Failed to pull image "bridgetokubernetes.azurecr.io/lpkremoteagent:1.3.4" #500
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
# File based on https://github.com/imjohnbo/ok-to-test/blob/master/.github/workflows/ok-to-test.yml | |
name: Ok To Test | |
on: | |
issue_comment: | |
types: [created] | |
permissions: | |
contents: read | |
jobs: | |
ok-to-test: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
issues: write | |
contents: write | |
# Only run for PRs, not issue comments | |
if: ${{ github.event.issue.pull_request }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: slash command dispatch | |
uses: peter-evans/slash-command-dispatch@13bc09769d122a64f75aa5037256f6f2d78be8c4 # v4.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-type: pull-request | |
commands: ok-to-test | |
permission: write | |