Skip to content

Commit

Permalink
feature: add approve workload action
Browse files Browse the repository at this point in the history
Signed-off-by: jessestutler <jesseincomparable@hotmail.com>
  • Loading branch information
JesseStutler committed Sep 30, 2024
1 parent 9712489 commit 587c8b3
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/workflow-approve.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Approve Workloads

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

permissions:
contents: read

jobs:
approve:
name: Approve workloads if contains ok-to-test label
if: contains(github.event.pull_request.labels.*.name, 'ok-to-test')
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- name: Execute workloads
uses: actions/github-script@v7
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
});
}

0 comments on commit 587c8b3

Please sign in to comment.