mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
21 lines
466 B
YAML
21 lines
466 B
YAML
name: "Label PR"
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [edited, opened, synchronize, reopened]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
labels:
|
|
name: "Label PR"
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.pull_request.title, '[skip ci]')"
|
|
steps:
|
|
- uses: actions/labeler@v5
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
configuration-path: .github/labels.yml
|
|
sync-labels: true
|