From e44e66531d55f5b3fa88624ba800f4a82df4ca7a Mon Sep 17 00:00:00 2001 From: FabianK3 <21039694+FabianK3@users.noreply.github.com> Date: Mon, 6 Oct 2025 19:31:31 +0200 Subject: [PATCH] Fix - Missing actions permission in triage bot (#21454) # Summary This PR adds the missing actions write permission to the triage bot. # Details The actions write permission is required to access the actions cache that is needed for operations-per-run continuity. This one was simply missing. --- .github/workflows/stale.yml | 1 + .../fabiank3-bug-stale-action-label-setting copy.yml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 html/changelogs/fabiank3-bug-stale-action-label-setting copy.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index df7e1af28f1..d06af1891d4 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,6 +7,7 @@ on: workflow_dispatch: # Allow manual trigger permissions: + actions: write issues: write pull-requests: write diff --git a/html/changelogs/fabiank3-bug-stale-action-label-setting copy.yml b/html/changelogs/fabiank3-bug-stale-action-label-setting copy.yml new file mode 100644 index 00000000000..07b4b304540 --- /dev/null +++ b/html/changelogs/fabiank3-bug-stale-action-label-setting copy.yml @@ -0,0 +1,6 @@ +author: FabianK3 + +delete-after: True + +changes: + - bugfix: "Fixed missing permission for cache access in the issue triage workflow in the repository."