From c1b4244801f261b0a033ff4ee1c257d4c2a9d688 Mon Sep 17 00:00:00 2001 From: web-flow Date: Thu, 14 Sep 2023 19:45:05 +0000 Subject: [PATCH] Update global workflows --- .github/workflows/sync-labels.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/sync-labels.yaml diff --git a/.github/workflows/sync-labels.yaml b/.github/workflows/sync-labels.yaml new file mode 100644 index 00000000..4a7e01dc --- /dev/null +++ b/.github/workflows/sync-labels.yaml @@ -0,0 +1,17 @@ +name: Sync labels +on: + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '0 7 * * 1' + workflow_dispatch: + +jobs: + sync: + name: Run EndBug/label-sync + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - uses: EndBug/label-sync@v2 + with: + config-file: 'https://raw.githubusercontent.com/devantler/.github/main/.github/labels.yaml' + delete-other-labels: true