Skip to content

Commit 9a2c277

Browse files
authored
Add workflow to manage fundamentals PRs and issues
1 parent f06f9ac commit 9a2c277

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Add fundamentals PRs and issues to fundamentals board
2+
permissions:
3+
contents: read
4+
issues: write
5+
pull-requests: write
6+
7+
on:
8+
issues:
9+
types:
10+
- opened
11+
- labeled
12+
pull_request:
13+
types:
14+
- opened
15+
- labeled
16+
17+
jobs:
18+
add-to-project:
19+
name: Add issue to project
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/github/projects/4292
25+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
26+
labeled: fundamentals

0 commit comments

Comments
 (0)