From bec72771b4277ee92d0d7499a4389c576c6f791e Mon Sep 17 00:00:00 2001 From: Corey Daley Date: Wed, 9 Aug 2023 15:31:50 -0400 Subject: [PATCH] Add issues workflow --- .github/workflows/issues.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/issues.yml diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml new file mode 100644 index 0000000..356b0cb --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,20 @@ +name: Add issue or pull request to Project + +on: + issues: + types: + - opened + pull_request_target: + types: + - opened + - reopened + +jobs: + add-to-project: + runs-on: ubuntu-latest + steps: + - name: Add issue to project + uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/shipwright-io/projects/6 + github-token: ${{ secrets.ADD_TO_PROJECT_TOKEN }}