We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7365b3c commit 7c1e1eaCopy full SHA for 7c1e1ea
2 files changed
.github/workflows/ci.yaml
@@ -9,7 +9,7 @@ on:
9
jobs:
10
test:
11
# Only run for internal PRs or after a merge
12
- if: ${{ github.event.type == 'PushEvent' || github.event.pull_request.head.repo.full_name == github.repository }}
+ if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }}
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
.github/workflows/lint.yaml
@@ -23,5 +23,5 @@ jobs:
23
- uses: github/super-linter/[email protected]
24
env:
25
ERROR_ON_MISSING_EXEC_BIT: true
26
- VALIDATE_ALL_CODEBASE: ${{ github.event.type == 'PushEvent' }}
+ VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' }}
27
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments