Skip to content

Commit fb3111d

Browse files
Add GitHub Actions workflow to add issues to project
1 parent 2e80b3e commit fb3111d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Add Issue to Project
2+
3+
on:
4+
issues:
5+
types: [opened]
6+
7+
jobs:
8+
add-to-project:
9+
name: Add issue to project
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Add Issue to Project
13+
uses: actions/add-to-project@v0.5.0
14+
with:
15+
# URL del tuo progetto GitHub (formato: https://github.com/users/USERNAME/projects/PROJECT_NUMBER)
16+
# oppure per progetti organization: https://github.com/orgs/ORG_NAME/projects/PROJECT_NUMBER
17+
project-url: https://github.com/users/YOUR_USERNAME/projects/1
18+
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

0 commit comments

Comments
 (0)