Skip to content
Merged
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
44 changes: 44 additions & 0 deletions .github/workflows/pr-gh-workflow-approve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# adapted from github.com/kubernetes-sigs/cluster-api/.github/workflows/pr-gh-workflow-approve.yaml
# this workflow approves workflows if the PR has /ok-to-test
# related Prow feature request https://github.com/kubernetes/test-infra/issues/25210

name: Approve GH Workflows

on:
pull_request_target:
types: [opened, edited, reopened, synchronize, ready_for_review]

permissions: {}

jobs:
approve:
name: Approve on ok-to-test
runs-on: ubuntu-latest

permissions:
actions: write

if: contains(github.event.pull_request.labels.*.name, 'ok-to-test')
steps:
- name: Update PR
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.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
});
}