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.
2 parents d02a2de + 2f0203a commit 062f51dCopy full SHA for 062f51d
.github/workflows/label.yml
@@ -1,6 +1,7 @@
1
name: "Pull Request Labeler"
2
on:
3
pull_request:
4
+ types: [unlabeled]
5
6
concurrency:
7
group: ${{ github.workflow }}-${{ github.ref }}
@@ -59,11 +60,12 @@ jobs:
59
60
61
commenter:
62
runs-on: ubuntu-latest
63
+ needs: labeler
64
steps:
65
- name: Suggest to add labels
66
uses: peter-evans/create-or-update-comment@v2
67
# Execute only when no labels have been applied to the pull request
- if: toJSON(github.event.pull_request.labels.*.name) == '{}'
68
+ if: toJSON(github.event.pull_request.labels.*.name) == '[]'
69
with:
70
issue-number: ${{ github.event.pull_request.number }}
71
body: |
0 commit comments