Skip to content

Commit

Permalink
Merge pull request #3331 from stevehipwell/add-gh-workflow-approval
Browse files Browse the repository at this point in the history
Added automation to run GH actions on PRs with ok-to-test
  • Loading branch information
k8s-ci-robot authored Jan 25, 2023
2 parents a18bf2b + ead02a1 commit 8862af9
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/gh-workflow-approve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Approve GH Workflows

on:
pull_request_target:
types:
- labeled
- synchronize
branches:
- master

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@d556feaca394842dc55e4734bf3bb9f685482fa0 # v6.3.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
debug: ${{ secrets.ACTIONS_RUNNER_DEBUG }}
script: |
const workflowRuns = await octokit.rest.actions.listWorkflowRunsForRepo({
owner: context.repo.owner,
repo: context.repo.repo,
event: "pull_request",
status: "action_required",
head_sha: context.sha,
per_page: 100
}).data.workflow_runs;
for (var run of workflowRuns) {
await github.rest.actions.approveWorkflowRun({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: run.id
});
}

0 comments on commit 8862af9

Please sign in to comment.