From a7356faf9e1eadcb253771335b32d0941c0a34ed Mon Sep 17 00:00:00 2001 From: Kevin F Date: Wed, 5 Jun 2024 14:59:53 +0200 Subject: [PATCH] Add ARC project board workflow :green_heart: --- .github/workflows/manage-issues.yml | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/manage-issues.yml diff --git a/.github/workflows/manage-issues.yml b/.github/workflows/manage-issues.yml new file mode 100644 index 0000000..ba72258 --- /dev/null +++ b/.github/workflows/manage-issues.yml @@ -0,0 +1,32 @@ +name: Manage issues + +on: + issues: + types: + - opened + - reopened + - transferred + +jobs: + label_issues: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - run: gh issue edit "$NUMBER" --add-label "$LABELS" + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_REPO: ${{ github.repository }} + NUMBER: ${{ github.event.issue.number }} + LABELS: "Status: Needs Triage" + + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v1.0.1 + with: + # You can target a project in a different organization + # to the issue + project-url: https://github.com/orgs/nfdi4plants/projects/10 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} \ No newline at end of file