We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e80b3e commit fb3111dCopy full SHA for fb3111d
1 file changed
.github/workflows/add-issue-to-project.yml
@@ -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