2021-06-13 13:28:52 +00:00
|
|
|
# If someone with write access comments "/ok-to-test" on a pull request, emit a repository_dispatch event
|
|
|
|
name: Ok To Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
issue_comment:
|
|
|
|
types: [created]
|
|
|
|
|
2024-01-18 20:03:07 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-06-13 13:28:52 +00:00
|
|
|
jobs:
|
|
|
|
ok-to-test:
|
2024-01-18 20:03:07 +00:00
|
|
|
permissions:
|
|
|
|
pull-requests: write # for peter-evans/slash-command-dispatch to create PR reaction
|
2021-06-13 13:28:52 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Only run for PRs, not issue comments
|
|
|
|
if: ${{ github.event.issue.pull_request }}
|
|
|
|
steps:
|
|
|
|
# Generate a GitHub App installation access token from an App ID and private key
|
|
|
|
# To create a new GitHub App:
|
|
|
|
# https://developer.github.com/apps/building-github-apps/creating-a-github-app/
|
|
|
|
# See app.yml for an example app manifest
|
|
|
|
- name: Generate token
|
|
|
|
id: generate_token
|
2024-01-18 20:03:07 +00:00
|
|
|
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
|
2021-06-13 13:28:52 +00:00
|
|
|
with:
|
|
|
|
app_id: ${{ secrets.APP_ID }}
|
|
|
|
private_key: ${{ secrets.PRIVATE_KEY }}
|
|
|
|
|
|
|
|
- name: Slash Command Dispatch
|
2024-01-18 20:03:07 +00:00
|
|
|
uses: peter-evans/slash-command-dispatch@f996d7b7aae9059759ac55e978cff76d91853301 # v3.0.2
|
2021-06-13 13:28:52 +00:00
|
|
|
with:
|
2022-10-29 18:15:50 +00:00
|
|
|
token: ${{ steps.generate_token.outputs.token }}
|
2021-06-13 13:28:52 +00:00
|
|
|
reaction-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
issue-type: pull-request
|
|
|
|
commands: ok-to-test
|
2021-09-28 14:42:16 +00:00
|
|
|
permission: maintain
|