From dbb90bf23ab5d38b72df3d8b43c58c1364baebef Mon Sep 17 00:00:00 2001 From: Josh Ford Date: Thu, 21 Nov 2024 17:21:03 -0800 Subject: [PATCH] feat: add to devrel workflow --- .github/workflows/add-to-devrel.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/add-to-devrel.yml diff --git a/.github/workflows/add-to-devrel.yml b/.github/workflows/add-to-devrel.yml new file mode 100644 index 0000000..91d324e --- /dev/null +++ b/.github/workflows/add-to-devrel.yml @@ -0,0 +1,22 @@ +name: 'Add to DevRel 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 DevRel Project #117 + project-url: https://github.com/orgs/near/projects/117 + github-token: ${{ secrets.GH_TOKEN }}