Create add_to_project.yml
Adds all new issues to project board
diff --git a/.github/workflows/add_to_project.yml b/.github/workflows/add_to_project.yml
new file mode 100644
index 0000000..7c2d96d
--- /dev/null
+++ b/.github/workflows/add_to_project.yml
@@ -0,0 +1,26 @@
+name: Adds all new issues to project board
+
+on:
+ issues:
+ types:
+ - opened
+
+jobs:
+ add-to-project:
+ name: Add issue to project
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/add-to-project@v0.5.0
+ with:
+ project-url: https://github.com/orgs/rive-app/projects/12/views/1
+ github-token: ${{ secrets.ADD_TO_PROJECT_ACTION }}
+
+ - uses: actions/github-script@v6
+ with:
+ script: |
+ github.rest.issues.addLabels({
+ issue_number: context.issue.number,
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ labels: ["triage"]
+ })