Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"actions/remove-checkout-credentials": "0.1.2",
"actions/dependabot-auto-triage": "1.1.3",
"actions/get-latest-workflow-artifact": "0.2.3",
"actions/create-github-app-token": "0.3.1",
"actions/create-github-app-token": "1.0.0",
"actions/run-capslock": "0.2.3",
"actions/azure-trusted-signing": "1.0.3",
"actions/validate-renovate-config": "0.1.4",
Expand Down
16 changes: 16 additions & 0 deletions actions/create-github-app-token/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.0.0](https://github.com/grafana/shared-workflows/compare/create-github-app-token/v0.3.1...create-github-app-token/v1.0.0) (2026-09-11)


### ⚠ BREAKING CHANGES

* **create-github-app-token:** rewrite as node24 action with post-job revocation ([#2028](https://github.com/grafana/shared-workflows/issues/2028))

### πŸŽ‰ Features

* **create-github-app-token:** rewrite as node24 action with post-job revocation ([#2028](https://github.com/grafana/shared-workflows/issues/2028)) ([026c778](https://github.com/grafana/shared-workflows/commit/026c77837eeba1f04d78bdcd6d7e8eca340451ea))


### πŸ“ Documentation

* generate action and workflow input/output tables ([#2276](https://github.com/grafana/shared-workflows/issues/2276)) ([ddcc1f8](https://github.com/grafana/shared-workflows/commit/ddcc1f84239514abefa7b02481bfcc24bd88c4ca))

## [0.3.1](https://github.com/grafana/shared-workflows/compare/create-github-app-token/v0.3.0...create-github-app-token/v0.3.1) (2026-06-01)


Expand Down
6 changes: 3 additions & 3 deletions actions/create-github-app-token/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

steps:
- id: get-github-token
uses: grafana/shared-workflows/actions/create-github-app-token@create-github-app-token/v0.3.1
uses: grafana/shared-workflows/actions/create-github-app-token@create-github-app-token/v1.0.0
with:
github_app: github-app-name

Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

steps:
- id: get-github-token-read
uses: grafana/shared-workflows/actions/create-github-app-token@create-github-app-token/v0.3.1
uses: grafana/shared-workflows/actions/create-github-app-token@create-github-app-token/v1.0.0
with:
github_app: github-app-name
permission_set: read-only-on-foo-repository
Expand All @@ -109,7 +109,7 @@ jobs:
https://api.github.com/repos/grafana/foo-repository/assignees

- id: get-github-token-write
uses: grafana/shared-workflows/actions/create-github-app-token@create-github-app-token/v0.3.1
uses: grafana/shared-workflows/actions/create-github-app-token@create-github-app-token/v1.0.0
with:
github_app: github-app-name
permission_set: write-on-bar-repository
Expand Down