2021-09-20 05:02:10 +00:00
|
|
|
name: Labeller
|
|
|
|
|
2021-09-21 23:10:22 +00:00
|
|
|
on: [pull_request_target]
|
2021-09-20 05:02:10 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
label:
|
2021-11-10 00:22:48 +00:00
|
|
|
name: Label
|
2021-09-20 05:02:10 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Label
|
2023-12-09 22:53:57 +00:00
|
|
|
uses: actions/labeler@v5
|
2021-09-20 05:02:10 +00:00
|
|
|
with:
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
configuration-path: .github/labeller.yml
|