2022-07-04 19:16:01 +00:00
|
|
|
name: "Pull Request Labeler"
|
|
|
|
on:
|
2022-11-03 20:29:14 +00:00
|
|
|
- pull_request_target
|
2022-09-08 17:01:47 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
2022-07-04 19:16:01 +00:00
|
|
|
jobs:
|
2022-07-04 23:36:38 +00:00
|
|
|
labeler:
|
2022-07-04 19:16:01 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pull-requests: write
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/labeler@v4
|
|
|
|
with:
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
2023-01-10 02:52:02 +00:00
|
|
|
# https://github.com/actions/labeler/issues/442#issuecomment-1297359481
|
|
|
|
sync-labels: ""
|