mirror of
https://github.com/truecharts/charts.git
synced 2026-07-03 09:44:16 -03:00
27 lines
686 B
YAML
27 lines
686 B
YAML
---
|
|
name: "Schedule: Sync labels"
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 * * * *"
|
|
|
|
jobs:
|
|
labels:
|
|
name: Sync Labels
|
|
runs-on:
|
|
group: default
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
|
|
- name: Sync Labels
|
|
uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a # v2
|
|
with:
|
|
config-file: |
|
|
https://raw.githubusercontent.com/truecharts/.github/main/.github/labels.yaml
|
|
token: "${{ secrets.BOT_TOKEN }}"
|
|
delete-other-labels: true
|