TrueChartsClone/.github/workflows/schedule-sync-labels.yaml

26 lines
679 B
YAML
Raw Normal View History

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
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
2022-03-31 18:38:38 +00:00
with:
token: ${{ secrets.BOT_TOKEN }}
- name: Sync Labels
uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2
2022-03-31 18:38:38 +00:00
with:
config-file: |
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