We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed25995 commit 79c65d7Copy full SHA for 79c65d7
.github/workflows/verify.yml
@@ -7,11 +7,15 @@ jobs:
7
runs-on: ubuntu-latest
8
name: verify PR contents
9
steps:
10
+ - name: test
11
+ run: echo "$GITHUB_CONTEXT"
12
+ env:
13
+ GITHUB_CONTEXT: ${{ toJSON(github) }}
14
- name: Verifier action
15
id: verifier
16
uses: kubernetes-sigs/[email protected]
17
# Don't run this step on PRs created by the cherry-pick bot,
18
# as the PR description is too short, but otherwise the PRs are fine.
- if: ${{ github.event.pull_request_target.head.repo.owner.login != 'chrischdi' }}
19
+ if: ${{ github.event.pull_request.head.repo.owner.login != 'chrischdi' }}
20
with:
21
github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments