From 47226b864d461d73e022c2d1b7fa508cd41373f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Bedi?= Date: Mon, 15 Sep 2025 20:12:15 +0200 Subject: [PATCH] Add create plugin update workflow (#2074) --- .github/workflows/update-create-plugin.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/update-create-plugin.yml diff --git a/.github/workflows/update-create-plugin.yml b/.github/workflows/update-create-plugin.yml new file mode 100644 index 0000000..0e0a927 --- /dev/null +++ b/.github/workflows/update-create-plugin.yml @@ -0,0 +1,16 @@ +name: Create Plugin Update + +on: + workflow_dispatch: + schedule: + - cron: '0 0 1 * *' # run once a month on the 1st day + +permissions: + contents: write + pull-requests: write + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: grafana/plugin-actions/create-plugin-update@main