mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-11 02:10:11 +01:00
24 lines
468 B
YAML
24 lines
468 B
YAML
|
name: Manage labels
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "30 20 * * *"
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
issues: write
|
||
|
|
||
|
jobs:
|
||
|
labeler:
|
||
|
name: Labeler
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out the repository
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Run Labeler
|
||
|
uses: crazy-max/ghaction-github-labeler@v5
|
||
|
with:
|
||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
yaml-file: .github/labels.yml
|
||
|
skip-delete: true
|