HelpLogin
© 2022-2025 Spice AI, Inc.
SQL Query ReferenceDocsFAQSupport
PrivacyTerms
Status
Home
Datasets
Models
trunk
Edit on GitHub
Fork
/docs/.github/workflows/label.yml
1# This workflow will triage pull requests and apply a label based on the
2# paths that are modified in the pull request.
3#
4# To use this workflow, you will need to set up a .github/labeler.yml
5# file with configuration. For more information, see:
6# https://github.com/actions/labeler
7
8name: Labeler
9on: [pull_request_target]
10
11jobs:
12 label:
13 runs-on: ubuntu-latest
14 permissions:
15 contents: read
16 pull-requests: write
17
18 steps:
19 - uses: actions/checkout@v4
20
21 - uses: actions/labeler@v5
22 with:
23 repo-token: '${{ secrets.GITHUB_TOKEN }}'
24
1# This workflow will triage pull requests and apply a label based on the
2# paths that are modified in the pull request.
3#
4# To use this workflow, you will need to set up a .github/labeler.yml
5# file with configuration. For more information, see:
6# https://github.com/actions/labeler
7
8name: Labeler
9on: [pull_request_target]
10
11jobs:
12 label:
13 runs-on: ubuntu-latest
14 permissions:
15 contents: read
16 pull-requests: write
17
18 steps:
19 - uses: actions/checkout@v4
20
21 - uses: actions/labeler@v5
22 with:
23 repo-token: '${{ secrets.GITHUB_TOKEN }}'
24