We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 466977d commit 0d7d763Copy full SHA for 0d7d763
.github/workflows/whlnext_project_management.yml
@@ -0,0 +1,26 @@
1
+name: Adds all issues that include the 'tracked' label to WheelNext project board
2
+
3
+on:
4
+ issues:
5
+ types:
6
+ - opened
7
+ - reopened
8
+ - transferred
9
+ - labeled
10
11
+ pull_request_target:
12
13
14
15
16
17
+jobs:
18
+ add-to-project:
19
+ name: Add issue to WheelNext Project Board
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/add-to-project@v1.0.2
23
+ with:
24
+ project-url: https://github.com/orgs/wheelnext/projects/4
25
+ github-token: ${{ secrets.CI_TOKEN }}
26
+ labeled: tracked
0 commit comments