From f85e1acfa738c85fb386a4e5183efa16071ca191 Mon Sep 17 00:00:00 2001 From: lrapoport-cf Date: Mon, 7 Aug 2023 22:10:59 -0400 Subject: [PATCH] Add workflow to add issues to GH project --- .github/workflows/issues.yml | 16 ++++++++++++++++ 1 file changed, 16 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..e129dab --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,16 @@ +name: Add issues to workers-sdk GH project + +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/cloudflare/projects/1 + github-token: ${{ secrets.GH_ACCESS_TOKEN }} \ No newline at end of file