2021-02-15 20:48:09 +03:00
|
|
|
name: "Pull Request Labeler"
|
|
|
|
on:
|
|
|
|
- pull_request_target
|
|
|
|
|
2022-10-03 17:53:12 +03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-02-15 20:48:09 +03:00
|
|
|
jobs:
|
|
|
|
triage:
|
2022-10-03 17:53:12 +03:00
|
|
|
permissions:
|
|
|
|
contents: read # for actions/labeler to determine modified files
|
|
|
|
pull-requests: write # for actions/labeler to add labels to PRs
|
2021-02-15 20:48:09 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-25 18:45:15 +03:00
|
|
|
- uses: actions/labeler@v4
|
2021-02-15 20:48:09 +03:00
|
|
|
with:
|
|
|
|
repo-token: "${{ github.token }}"
|
|
|
|
|