From b2c75fe2fc793ba14d261d906117ee5972657b9f Mon Sep 17 00:00:00 2001 From: Josh Ford Date: Fri, 22 Nov 2024 10:43:29 -0800 Subject: [PATCH] feat: add 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 000000000..91d324e0c --- /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 }}