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 e02e6c9 commit 05e0a7dCopy full SHA for 05e0a7d
.github/workflows/add-zenhub-label.yml
@@ -0,0 +1,24 @@
1
+# Ensure we add the correct ZenHub label for all new issues
2
+# Avoids problem where checklist issues are not added to the correct ZenHub pipeline
3
+
4
+name: Add ZenHub label to issues
5
+on:
6
+ issues:
7
+ types:
8
+ - reopened
9
+ - opened
10
+jobs:
11
+ label_issues:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ issues: write
15
+ steps:
16
+ - uses: actions/github-script@v6
17
+ with:
18
+ script: |
19
+ github.rest.issues.addLabels({
20
+ issue_number: context.issue.number,
21
+ owner: context.repo.owner,
22
+ repo: context.repo.repo,
23
+ labels: ["Ecosystem: Frameworks"]
24
+ })
0 commit comments