Skip to content

Commit 663dd35

Browse files
committed
[tool] chore(tooling): introduce add to project workflow
1 parent d92e526 commit 663dd35

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "[Integrations] Add to Project"
2+
# This GitHub Actions workflow automatically adds newly opened issues and pull requests to a specific GitHub project.
3+
4+
on:
5+
issues:
6+
types:
7+
- opened
8+
pull_request:
9+
types:
10+
- opened
11+
12+
jobs:
13+
add-to-project:
14+
name: Add issue to project
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/add-to-project@v1.0.2
18+
with:
19+
project-url: ${{ vars.PROJECT_URL }}
20+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 commit comments

Comments
 (0)