🌱 Test PR for dependabot #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
continue-on-error: true | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
console.log(context) | |
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 | |
}); | |
await github.rest.actions.createWorkflowDispatch({ | |
context.repo.owner, | |
context.repo.repo, | |
"lint", | |
context.ref, | |
}); | |
await github.rest.actions.approveWorkflowRun({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
run_id: run.id | |
}); |