Skip to content

Commit 02595fb

Browse files
Create add-to-project.yml
1 parent e64f337 commit 02595fb

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/add-to-project.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Add new issues to project
2+
3+
on:
4+
issues:
5+
types:
6+
- opened
7+
8+
jobs:
9+
add-to-project:
10+
name: Add new issues labeled with enhancement or bug to project
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/[email protected]
14+
with:
15+
# You can target a repository in a different organization
16+
# to the issue
17+
project-url: https://github.com/orgs/CodeEditApp/projects/3
18+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
19+
labeled: enhancement, bug
20+
label-operator: OR

0 commit comments

Comments
 (0)