From 463572a7d91b273ebd74a39cbc711067b4371edb Mon Sep 17 00:00:00 2001 From: Jesse Snyder Date: Wed, 29 May 2024 13:14:22 -0600 Subject: [PATCH] gh action to add issues to project --- .github/workflows/project.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/project.yaml diff --git a/.github/workflows/project.yaml b/.github/workflows/project.yaml new file mode 100644 index 0000000..40b4833 --- /dev/null +++ b/.github/workflows/project.yaml @@ -0,0 +1,16 @@ +name: Project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add new issues + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/astriaorg/projects/1 + github-token: ${{ secrets.ASTRIA_PROJECT_TOKEN }}