Bumps [actions/labeler](https://github.com/actions/labeler) from 5 to 6. - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jokemanfire <hu.dingyang@zte.com.cn>
28 lines
No EOL
688 B
YAML
28 lines
No EOL
688 B
YAML
name: Auto Label PR
|
|
on:
|
|
# Runs workflow when activity on a PR in the workflow's repository occurs.
|
|
pull_request_target:
|
|
|
|
jobs:
|
|
auto-label:
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
name: Assign labels
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
|
|
# Required by gh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
PR_URL: ${{ github.event.pull_request.html_url }}
|
|
|
|
steps:
|
|
- uses: actions/labeler@v6
|
|
with:
|
|
# Auto-include paths starting with dot (e.g. .github)
|
|
dot: true
|
|
# Remove labels when matching files are reverted or no longer changed by the PR
|
|
sync-labels: true |