Skip to content

Commit

Permalink
Create manage-issues.yml (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene authored Jun 6, 2024
1 parent fdac911 commit 7c5f1e9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/manage-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Manage issues

on:
issues:
types:
- opened
- reopened

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/[email protected]
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 7c5f1e9

Please sign in to comment.