Skip to content

Commit 56cd8e4

Browse files
committed
added action for categorizing issues with project
1 parent ba3b8b4 commit 56cd8e4

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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

0 commit comments

Comments
 (0)