Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Jan 22, 2025
1 parent 105bb38 commit 06b3cb3
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/pr_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ on:
- "gui/**"
- ".github/workflows/**"

# Tests requiring secrets need approval from maintainers
environment: ${{ github.event.pull_request.head.repo.fork && 'tests-requiring-secrets' || '' }}

jobs:
install-root:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -73,11 +70,9 @@ jobs:
core-checks:
needs: install-core
runs-on: ubuntu-latest
# Tests requiring secrets need approval from maintainers
environment: ${{ github.event.pull_request.head.repo.fork && 'tests-requiring-secrets' || '' }}
steps:
- name: Print whether fork
run: |
echo "Fork: ${{ github.event.pull_request.head.repo.fork }}"
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -393,6 +388,8 @@ jobs:
install-core,
]
runs-on: ubuntu-latest
# Tests requiring secrets need approval from maintainers
environment: ${{ github.event.pull_request.head.repo.fork && 'tests-requiring-secrets' || '' }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 06b3cb3

Please sign in to comment.