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

26 lines
679 B
YAML
Raw Normal View History

2022-03-31 14:22:03 -04:00
---
name: "Schedule: Sync labels"
on: # yamllint disable-line rule:truthy
workflow_dispatch:
schedule:
- cron: "0 * * * *"
jobs:
labels:
2022-03-31 14:38:38 -04:00
name: Sync Labels
runs-on: ubuntu-latest
steps:
- name: Checkout
chore(deps): update github-actions (#12845) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://togithub.com/actions/checkout) | action | digest | `3df4ab1` -> `8ade135` | | [actions/checkout](https://togithub.com/actions/checkout) | action | minor | `v4.0.0` -> `v4.1.0` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v4.1.0`](https://togithub.com/actions/checkout/blob/HEAD/CHANGELOG.md#v410) [Compare Source](https://togithub.com/actions/checkout/compare/v4.0.0...v4.1.0) - [Add support for partial checkout filters](https://togithub.com/actions/checkout/pull/1396) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDMuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMy4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2023-09-22 15:20:52 -04:00
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
2022-03-31 14:38:38 -04:00
with:
token: ${{ secrets.BOT_TOKEN }}
- name: Sync Labels
uses: EndBug/label-sync@da00f2c11fdb78e4fae44adac2fdd713778ea3e8 # v2
2022-03-31 14:38:38 -04:00
with:
config-file: |
https://raw.githubusercontent.com/truecharts/.github/main/.github/labels.yaml
2022-03-31 14:38:38 -04:00
token: "${{ secrets.BOT_TOKEN }}"
delete-other-labels: true