From 10e6c4a207004b404f237cea5a0b56ab2aad65a1 Mon Sep 17 00:00:00 2001 From: Josh Ford Date: Thu, 21 Nov 2024 17:48:49 -0800 Subject: [PATCH] feat: add to devtools workflow --- .github/workflows/add-to-devtools.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/add-to-devtools.yml diff --git a/.github/workflows/add-to-devtools.yml b/.github/workflows/add-to-devtools.yml new file mode 100644 index 00000000..35bd989f --- /dev/null +++ b/.github/workflows/add-to-devtools.yml @@ -0,0 +1,22 @@ +name: 'Add to DevTools Project' + +on: + issues: + types: + - opened + - reopened + pull_request: + types: + - opened + - reopened + +jobs: + add-to-project: + name: Add issue/PR to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.0 + with: + # add to DevTools Project #156 + project-url: https://github.com/orgs/near/projects/156 + github-token: ${{ secrets.GH_TOKEN }}