We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d92e526 commit 663dd35Copy full SHA for 663dd35
.github/workflows/integrations-add-to-project.yml
@@ -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
10
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