mirror of
https://github.com/deepseek-ai/DeepSeek-R1.git
synced 2025-02-23 14:18:59 -05:00
20 lines
407 B
YAML
20 lines
407 B
YAML
name: Issue Labeler
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
auto-label:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Apply labels
|
|
uses: actions/labeler@v3
|
|
with:
|
|
configuration-path: .github/issue-labeler.yml
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|