Skip to content

Commit

Permalink
Create workflows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
codycooperross authored Jul 23, 2024
1 parent 96be1c0 commit 4843a91
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Move new issues to triage
on:
issues:
types:
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- run: gh issue transfer "$NUMBER" datacite/product-suggestions-triage
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}

0 comments on commit 4843a91

Please sign in to comment.