Skip to content

Fix bug where some ConfigMap and Secret references could be missed #5286

Fix bug where some ConfigMap and Secret references could be missed

Fix bug where some ConfigMap and Secret references could be missed #5286

Workflow file for this run

# If someone with write access comments "/ok-to-test" on a pull request, emit a repository_dispatch event
# Adapted from: https:/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