fix mergequeue skipped tests (#22)
* fix mergequeue skipped tests * linter fix
This commit is contained in:
parent
1752d1117f
commit
ddf9285791
25
.github/workflows/ci.yml
vendored
25
.github/workflows/ci.yml
vendored
@ -106,17 +106,9 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- shell: bash
|
||||
run: echo "github.ref"
|
||||
run: echo "github.event.merge_queue"
|
||||
- shell: bash
|
||||
run: echo ${{ github.ref }}
|
||||
- shell: bash
|
||||
run: echo "github.event.merge_queue.head.repo.full_name"
|
||||
- shell: bash
|
||||
run: echo ${{ github.event.merge_queue.head.repo.full_name }}
|
||||
- shell: bash
|
||||
run: echo "github.repository"
|
||||
- shell: bash
|
||||
run: echo ${{ github.repository }}
|
||||
run: echo ${{ github.event.merge_queue }}
|
||||
# ----------------------------------------------------------------------------------------------------
|
||||
# --- Website Linting -----------------------------------------------------------------------------------
|
||||
# ----------------------------------------------------------------------------------------------------
|
||||
@ -146,15 +138,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 120
|
||||
if: |
|
||||
(
|
||||
startsWith(github.ref, 'refs/tags/')
|
||||
|| github.ref == 'refs/heads/gh-readonly-queue/main'
|
||||
|| github.ref == 'refs/heads/main'
|
||||
)
|
||||
|| (
|
||||
needs.precheck.outputs.srcfileschanged == 'true'
|
||||
&& github.event.pull_request.head.repo.full_name == github.repository
|
||||
)
|
||||
startsWith(github.ref, 'refs/tags/')
|
||||
|| startsWith(github.ref, 'refs/heads/gh-readonly-queue/main')
|
||||
|| github.ref == 'refs/heads/main'
|
||||
|| (needs.precheck.outputs.srcfileschanged == 'true' && github.event.pull_request.head.repo.full_name == github.repository)
|
||||
defaults:
|
||||
run:
|
||||
working-directory: src
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user