From efc53fc9bf86db739b3ac87baf1ac41cc57dbdf5 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 5 Feb 2025 09:09:31 +0200 Subject: [PATCH] feat(ci): sync-labels from ivuorinen/actions --- .github/workflows/sync-labels.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/sync-labels.yml diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml new file mode 100644 index 0000000..e5e2001 --- /dev/null +++ b/.github/workflows/sync-labels.yml @@ -0,0 +1,23 @@ +--- +name: Sync labels + +# yamllint disable-line rule:truthy +on: + push: + branches: + - main + paths: + - .github/workflows/sync-labels.yml + - .github/labels.yml + schedule: + - cron: "34 5 * * *" + workflow_call: + workflow_dispatch: + +jobs: + SyncLabels: + permissions: + issues: write + runs-on: ubuntu-latest + steps: + - uses: ivuorinen/actions/sync-labels@main