From 77add7b65a92dd10f6db993ce9f7aa7b84f0c645 Mon Sep 17 00:00:00 2001 From: Andy Waite <13400+andyw8@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:46:18 -0400 Subject: [PATCH] Add GH Action for Add To Project --- .github/workflows/add_to_project.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/add_to_project.yml diff --git a/.github/workflows/add_to_project.yml b/.github/workflows/add_to_project.yml new file mode 100644 index 0000000000..b9af033c47 --- /dev/null +++ b/.github/workflows/add_to_project.yml @@ -0,0 +1,14 @@ +on: + issues: + types: + - opened + + jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1 + with: + project-url: https://github.com/orgs/Shopify/projects/2215 + github-token: ${{ secrets.GITHUB_TOKEN }}