We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6111074 commit 48af520Copy full SHA for 48af520
1 file changed
.github/workflows/pr-labeler.yml
@@ -11,7 +11,10 @@ concurrency:
11
jobs:
12
auto-label:
13
runs-on: ubuntu-latest
14
- if: github.event.action != 'closed' || github.event.pull_request.merged == true
+ if: |
15
+ (github.event.action == 'opened') ||
16
+ (github.event.action == 'edited' && github.event.pull_request.state == 'open') ||
17
+ (github.event.action == 'closed' && github.event.pull_request.merged == true)
18
permissions:
19
pull-requests: write
20
contents: read
0 commit comments