From 790ed82abdf0f7bc4f21406674a4c240cbc777ba Mon Sep 17 00:00:00 2001 From: "grafana-plugins-platform-bot[bot]" <144369747+grafana-plugins-platform-bot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 08:45:09 +0000 Subject: [PATCH] chore(main): release build-plugin 1.2.1 --- .release-please-manifest.json | 2 +- build-plugin/CHANGELOG.md | 7 +++++++ build-plugin/README.md | 14 +++++++------- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f2d69b82..bb287b71 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "build-plugin": "1.2.0", + "build-plugin": "1.2.1", "bundle-size": "1.1.0", "bundle-types": "1.0.3", "create-plugin-update": "2.0.2", diff --git a/build-plugin/CHANGELOG.md b/build-plugin/CHANGELOG.md index 1c25f8db..4d69af05 100644 --- a/build-plugin/CHANGELOG.md +++ b/build-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.1](https://github.com/grafana/plugin-actions/compare/build-plugin/v1.2.0...build-plugin/v1.2.1) (2026-06-19) + + +### 🐛 Bug Fixes + +* **build-plugin:** use GitHub API to create signed changelog commit ([#241](https://github.com/grafana/plugin-actions/issues/241)) ([33a8775](https://github.com/grafana/plugin-actions/commit/33a8775f5df798793034b5e84a3f3214fe88c12f)) + ## [1.2.0](https://github.com/grafana/plugin-actions/compare/build-plugin/v1.1.0...build-plugin/v1.2.0) (2026-02-24) diff --git a/build-plugin/README.md b/build-plugin/README.md index d11f2138..6d17b59c 100644 --- a/build-plugin/README.md +++ b/build-plugin/README.md @@ -29,7 +29,7 @@ name: Release on: push: tags: - - "v*" # Run workflow on version tags, e.g. v1.2.0. + - "v*" # Run workflow on version tags, e.g. v1.2.1. jobs: release: @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0 + - uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.1 with: # see https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token to generate it # save the value in your repository secrets @@ -73,7 +73,7 @@ name: Release on: push: tags: - - "v*" # Run workflow on version tags, e.g. v1.2.0. + - "v*" # Run workflow on version tags, e.g. v1.2.1. jobs: release: @@ -86,7 +86,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0 + - uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.1 with: policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }} attestation: true # new line @@ -108,7 +108,7 @@ To enable changelog generation in your workflow: ```yaml -- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0 +- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.1 with: policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }} use_changelog_generator: true @@ -128,7 +128,7 @@ If your target branch is protected, the default github.token cannot push changes ```yaml - name: Build plugin - uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0 + uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.1 with: use_changelog_generator: true token: ${{ secrets.CHANGELOG_PAT }} # Replace default github.token @@ -141,7 +141,7 @@ If your plugin requires a different Go version than the default, you can specify ```yaml -- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.0 +- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.2.1 with: policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }} go-version: '1.23'