From 1761b46d65ebf3ea9a1b4e6087deaae897abb7ef Mon Sep 17 00:00:00 2001 From: Bobby Fatemi Date: Fri, 19 Sep 2025 22:08:06 -0700 Subject: [PATCH] Add workflow for label sync This GitHub Actions workflow syncs labels across repositories using manage-your-labels and runs daily and on manual trigger. --- .github/workflows/manage-labels.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/manage-labels.yml diff --git a/.github/workflows/manage-labels.yml b/.github/workflows/manage-labels.yml new file mode 100644 index 0000000..3690f60 --- /dev/null +++ b/.github/workflows/manage-labels.yml @@ -0,0 +1,17 @@ +name: Manage org labels +on: + workflow_dispatch: + schedule: + - cron: '0 9 * * *' + + jobs: + sync: + runs-on: ubuntu-latest + permissions: + contents: read + issues: write + steps: + - uses: actions/checkout@v4 + - uses: actions-automation/manage-your-labels@v0.1.0 + with: + github-token: ${{ secrets.ORG_LABEL_SYNC_TOKEN }}