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 3bcd8e4 commit 5dbe1e3Copy full SHA for 5dbe1e3
.github/workflows/bug-tracker.yml
@@ -3,7 +3,7 @@ name: Bug tracker
3
on:
4
workflow_dispatch:
5
issues:
6
- types: [opened, labeled]
+ types: labeled
7
8
jobs:
9
get-org-repos:
@@ -20,7 +20,7 @@ jobs:
20
needs:
21
- get-org-repos
22
runs-on: ubuntu-latest
23
- if: github.event_name == 'issues' && (github.event.label.name == 'bug' || contains(github.event.issue.labels.*.name, 'bug'))
+ if: github.event.action == 'labeled' && github.event.label.name == 'bug'
24
steps:
25
- name: Add issue to project
26
uses: actions/add-to-project@v1
0 commit comments