mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-11 02:10:11 +01:00
18 lines
385 B
YAML
18 lines
385 B
YAML
|
name: "Pull Request Labeler"
|
||
|
on:
|
||
|
pull_request:
|
||
|
types: [opened, synchronize]
|
||
|
|
||
|
jobs:
|
||
|
labeler:
|
||
|
permissions:
|
||
|
contents: read
|
||
|
pull-requests: write
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/labeler@v5
|
||
|
with:
|
||
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
configuration-path: .github/labeler-config.yml
|
||
|
sync-labels: true
|