Skip to content

Commit c1b9b4c

Browse files
authored
Add Git job to add new issues to project (#2873)
1 parent aa9b735 commit c1b9b4c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/issues.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# @format
2+
3+
name: Issue Workflow
4+
5+
on:
6+
issues:
7+
types:
8+
- opened
9+
10+
jobs:
11+
add-to-project:
12+
name: Add issue to project
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/add-to-project@RELEASE_VERSION
16+
with:
17+
project-url: https://github.com/orgs/miniohq/projects/2
18+
github-token: ${{ secrets.BOT_PAT }}

0 commit comments

Comments
 (0)