File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Adds all issues that include the 'training' label to Malcolm Training project board
2
+
3
+ on :
4
+ issues :
5
+ types :
6
+ - opened
7
+
8
+ jobs :
9
+ add-to-project :
10
+ name : Add issue to project
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/add-to-project@v0.5.0
14
+ with :
15
+ project-url : https://github.com/orgs/idaholab/projects/24
16
+ github-token : ${{ secrets.ADD_TO_PROJECT_PAT }}
17
+ labeled : training
18
+ label-operator : OR
Original file line number Diff line number Diff line change
1
+ name : Adds all issues that don't include the 'training' label to Malcolm project board
2
+
3
+ on :
4
+ issues :
5
+ types :
6
+ - opened
7
+
8
+ jobs :
9
+ add-to-project :
10
+ name : Add issue to project
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/add-to-project@v0.5.0
14
+ with :
15
+ project-url : https://github.com/orgs/idaholab/projects/1
16
+ github-token : ${{ secrets.ADD_TO_PROJECT_PAT }}
17
+ labeled : training
18
+ label-operator : NOT
You can’t perform that action at this time.
0 commit comments