Some checks failed
Documentation / build-and-publish (push) Waiting to run
Test / test (push) Waiting to run
Checkout test / test (push) Successful in 5s
CI with Native Libraries / test-native (push) Has been cancelled
CI with Native Libraries / build-release (push) Has been cancelled
22 lines
407 B
YAML
22 lines
407 B
YAML
name: Label Pull Request
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
label:
|
|
runs-on: self-hosted
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Label PR
|
|
uses: actions/labeler@v4
|
|
with:
|
|
repo-token: ${{ secrets.GITEA_TOKEN }}
|
|
configuration-path: .gitea/labeler.yml
|
|
sync-labels: true
|