Skip to content

Commit

Permalink
github action without script invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
venetrius committed Oct 10, 2024
1 parent 92909ed commit 77cb283
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/set-version-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Label issues
on:
issues:
types:
- closed
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: "Hello World"

0 comments on commit 77cb283

Please sign in to comment.