Skip to content

Commit

Permalink
Add ARC project board workflow 💚
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Jun 5, 2024
1 parent 8228cd3 commit a7356fa
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/manage-issues.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit a7356fa

Please sign in to comment.