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 9492cd0 commit 39e3af0Copy full SHA for 39e3af0
.github/workflows/jiralabels.yml
@@ -25,13 +25,8 @@ jobs:
25
26
- name: Apply label if URI missing
27
if: steps.check_uri.outputs.missing == 'true'
28
- uses: actions-ecosystem/action-add-labels@v1
29
- with:
30
- labels: "needs-jira-issue"
+ run: gh pr edit "${{ github.event.pr.number }}" --add-label "needs-jira-issue"
31
32
- name: Remove label if URI present
33
if: steps.check_uri.outputs.missing == 'false'
34
- uses: actions-ecosystem/action-remove-labels@v1
35
36
37
-
+ run: gh pr edit "${{ github.event.pr.number }}" --remove-label "needs-jira-issue"
0 commit comments