From b98cd0e7e700f24246a352ce9e02653a79d99ea2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 2 Oct 2025 19:09:29 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20or=20update=20label-sync?= =?UTF-8?q?=20workflow=20boilerplate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/label-sync.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/label-sync.yml diff --git a/.github/workflows/label-sync.yml b/.github/workflows/label-sync.yml new file mode 100644 index 0000000..78c30db --- /dev/null +++ b/.github/workflows/label-sync.yml @@ -0,0 +1,17 @@ +--- + +name: Label Sync + +on: + schedule: + - cron: '0 6 * * Mon' # Weekly on Monday at 6 AM UTC + workflow_dispatch: + repository_dispatch: + types: [label-sync] + +permissions: + issues: write # Required to create and update labels + +jobs: + label-sync: + uses: brixion/.github/.github/workflows/label-sync.yml@main