From 8accebe508f944b8d1cb3e5be3381bc9c4eb0707 Mon Sep 17 00:00:00 2001 From: Richard Case Date: Fri, 5 Dec 2025 19:36:34 +0000 Subject: [PATCH] chore: approve workflows on ok-to-test Approve the GHA workflows to run when a /ok-to-test has been done on a PR. This is based on other workflows in CAPI projects. Signed-off-by: Richard Case --- .github/workflows/pr-gh-workflow-approve.yaml | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/pr-gh-workflow-approve.yaml diff --git a/.github/workflows/pr-gh-workflow-approve.yaml b/.github/workflows/pr-gh-workflow-approve.yaml new file mode 100644 index 000000000..373cea9a5 --- /dev/null +++ b/.github/workflows/pr-gh-workflow-approve.yaml @@ -0,0 +1,44 @@ +name: PR approve GH Workflows + +on: + pull_request_target: + types: + - edited + - labeled + - reopened + - synchronize + +jobs: + approve: + name: Approve ok-to-test + + if: contains(github.event.pull_request.labels.*.name, 'ok-to-test') + + runs-on: ubuntu-latest + + permissions: + actions: write + + steps: + - name: Update PR + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 + continue-on-error: true + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + script: | + const result = await github.rest.actions.listWorkflowRunsForRepo({ + owner: context.repo.owner, + repo: context.repo.repo, + event: "pull_request", + status: "action_required", + head_sha: context.payload.pull_request.head.sha, + per_page: 100 + }); + + for (var run of result.data.workflow_runs) { + await github.rest.actions.approveWorkflowRun({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: run.id + }); + }