2021-10-25 19:29:31 +02:00
|
|
|
name: "Pull Request Labeler"
|
|
|
|
on:
|
|
|
|
- pull_request_target
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
pull-requests: write
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Apply Type Label
|
2024-11-30 15:44:52 +01:00
|
|
|
uses: actions/labeler@v5
|
2021-10-25 19:29:31 +02:00
|
|
|
with:
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
2024-11-30 15:44:52 +01:00
|
|
|
sync-labels: false
|