We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a8d9c commit 00bdf54Copy full SHA for 00bdf54
.github/workflow/projectActions.yml
@@ -0,0 +1,20 @@
1
+name: Auto Assign to Project(s)
2
+
3
+on:
4
+ issues:
5
+ types: [opened, labeled]
6
+ pull_request:
7
8
+env:
9
+ GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }}
10
11
+jobs:
12
+ assign_one_project:
13
+ runs-on: ubuntu-latest
14
+ name: Assign to One Project
15
+ steps:
16
+ - name: Assign NEW issues project 4
17
+ uses: srggrs/assign-one-project-github-action@1.2.1
18
+ if: github.event.action == 'opened' || contains(github.event.issue.labels.*.name, 'java-web')
19
+ with:
20
+ project: 'github.com/bobocode-projects/java-web-course/projects/1'
0 commit comments