mirror of
https://github.com/hiyouga/LlamaFactory.git
synced 2026-01-30 14:22:04 +00:00
18 lines
309 B
YAML
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"
|