-
Notifications
You must be signed in to change notification settings - Fork 205
32 lines (29 loc) · 1.02 KB
/
ok-to-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# If someone with write access comments "/ok-to-test" on a pull request, emit a repository_dispatch event
# Adapted from: https://github.com/imjohnbo/ok-to-test/blob/master/.github/workflows/ok-to-test.yml
name: Ok to test
on:
issue_comment:
types: [created]
jobs:
ok-to-test:
runs-on: ubuntu-latest
permissions:
pull-requests: write # Required to comment on PR comments
# Only run for PRs, not issue comments
if: ${{ github.event.issue.pull_request }}
steps:
- name: Create token
uses: actions/create-github-app-token@v1
id: app-token
with:
# required
app-id: ${{ secrets.AUTOMATION_ID }}
private-key: ${{ secrets.AUTOMATION_KEY }}
- name: Slash Command Dispatch
uses: peter-evans/slash-command-dispatch@v4
with:
token: ${{ steps.app-token.outputs.token }}
reaction-token: ${{ secrets.GITHUB_TOKEN }}
issue-type: pull-request
commands: ok-to-test
permission: write