Skip to content

Commit eac54e2

Browse files
authored
Merge pull request #62 from rcpch/adds-workflow-file-auto-add-to-project
adds auto-add-to-issues workflow
2 parents 0c306b0 + 5e6aeb5 commit eac54e2

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Adds new Issues automatically to the dGC Project
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
pull_request:
8+
types:
9+
- opened
10+
11+
jobs:
12+
add-to-project:
13+
name: Add issue or PR to project automatically
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/add-to-project@v0.4.0
17+
with:
18+
project-url: https://github.com/orgs/rcpch/projects/5 #dGC Project
19+
github-token: ${{ secrets.AUTO_ADD_TO_PROJECT_TOKEN }}
20+

0 commit comments

Comments
 (0)