LLaMA-Factory/.github/workflows/label_issue.yml
hiyouga 1c31809652 update git workflows
Former-commit-id: 4c4f950f3936edbce84796c9a5e11b61ea07864e
2024-06-08 21:11:32 +08:00

18 lines
309 B
YAML

name: label_issue
on:
issues:
types:
- opened
jobs:
label_issue:
runs-on: ubuntu-latest
steps:
- env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE_URL: ${{ github.event.issue.html_url }}
run: |
gh issue edit $ISSUE_URL --add-label "pending"