2022-03-31 18:22:03 +00:00
|
|
|
---
|
|
|
|
name: "Schedule: Sync labels"
|
|
|
|
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 * * * *"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
labels:
|
2022-03-31 18:38:38 +00:00
|
|
|
name: Sync Labels
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-06-13 18:16:01 +00:00
|
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
2022-03-31 18:38:38 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
|
|
|
|
|
|
- name: Sync Labels
|
2024-02-14 00:26:56 +00:00
|
|
|
uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2
|
2022-03-31 18:38:38 +00:00
|
|
|
with:
|
|
|
|
config-file: |
|
2022-07-22 18:23:01 +00:00
|
|
|
https://raw.githubusercontent.com/truecharts/.github/main/.github/labels.yaml
|
2022-03-31 18:38:38 +00:00
|
|
|
token: "${{ secrets.BOT_TOKEN }}"
|
|
|
|
delete-other-labels: true
|