From 8dae3562e90cbc7e038f659dd77b6b0f15306393 Mon Sep 17 00:00:00 2001 From: Johannes Marbach Date: Tue, 21 Nov 2023 13:57:41 +0100 Subject: [PATCH] Set up rudimentary workflow for manually triggering label sync --- .github/labels.yml | 0 .github/workflows/sync-labels.yml | 16 ++++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .github/labels.yml create mode 100644 .github/workflows/sync-labels.yml diff --git a/.github/labels.yml b/.github/labels.yml new file mode 100644 index 0000000000..e69de29bb2 diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml new file mode 100644 index 0000000000..3b83f30dd4 --- /dev/null +++ b/.github/workflows/sync-labels.yml @@ -0,0 +1,16 @@ +name: Sync labels +on: + workflow_dispatch: {} + push: + branches: + - develop + paths: + - .github/labels.yml +jobs: + call-sync: + uses: vector-im/element-meta/.github/workflows/sync-labels.yml@develop + inputs: + LABELS: | + .github/labels.yml + secrets: + ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}