From 5f09d8f2a69e6a7ff24c582c11acdc83bbcb7cf8 Mon Sep 17 00:00:00 2001 From: Horst Gutmann Date: Thu, 27 Jul 2023 10:05:07 +0200 Subject: [PATCH] CI: Add community-release workflow (#72350) * CI: Add community-release workflow for posting to community.grafana.com * CI: Set delivery team as owners of community-release workflow --- .github/CODEOWNERS | 1 + .github/workflows/community-release.yml | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .github/workflows/community-release.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index c13a332333e..b183e5a6a8b 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -602,6 +602,7 @@ embed.go @grafana/grafana-as-code /.github/workflows/codeowners-validator.yml @tolzhabayev /.github/workflows/codeql-analysis.yml @DanCech /.github/workflows/commands.yml @torkelo +/.github/workflows/community-release.yml @grafana/grafana-delivery /.github/workflows/detect-breaking-changes-* @grafana/plugins-platform-frontend /.github/workflows/doc-validator.yml @grafana/docs-tooling /.github/workflows/epic-add-to-platform-ux-parent-project.yml @meanmina diff --git a/.github/workflows/community-release.yml b/.github/workflows/community-release.yml new file mode 100644 index 00000000000..502f96192c7 --- /dev/null +++ b/.github/workflows/community-release.yml @@ -0,0 +1,25 @@ +name: Create community release post +on: + workflow_dispatch: + inputs: + version: + required: true + description: 'Needs to match, exactly, the name of a milestone. The version to be released please respect: major.minor.patch, major.minor.patch-preview or major.minor.patch-preview format. example: 7.4.3, 7.4.3-preview or 7.4.3-preview1' +jobs: + main: + runs-on: ubuntu-latest + steps: + - name: "Generate token" + id: generate_token + uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 + with: + app_id: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_ID }} + private_key: ${{ secrets.GRAFANA_DELIVERY_BOT_APP_PEM }} + - name: Run community-release (manually invoked) + uses: grafana/grafana-github-actions-go/community-release@main + with: + token: ${{ steps.generate_token.outputs.token }} + version: ${{ inputs.version }} + metrics_api_key: ${{ secrets.GRAFANA_MISC_STATS_API_KEY }} + community_api_key: ${{ secrets.GRAFANABOT_FORUM_KEY }} + community_api_username: grafanabot