Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ jobs:

runner:
needs: [skip_check]
if: github.event.pull_request.draft == false && needs.skip_check.outputs.should_skip != 'true'
if: |
github.event.pull_request.draft == false &&
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true')
uses: ./.github/workflows/select-runner.yml

test:
Expand Down Expand Up @@ -95,7 +97,9 @@ jobs:

build:
needs: [skip_check]
if: github.event.pull_request.draft == false && needs.skip_check.outputs.should_skip != 'true'
if: |
github.event.pull_request.draft == false &&
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true')

name: Build target ${{ matrix.target }}
runs-on: ubuntu-latest
Expand Down Expand Up @@ -151,7 +155,9 @@ jobs:

bitrot:
needs: [skip_check]
if: github.event.pull_request.draft == false && needs.skip_check.outputs.should_skip != 'true'
if: |
github.event.pull_request.draft == false &&
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true')

name: Bitrot check
runs-on: ubuntu-latest
Expand Down Expand Up @@ -195,7 +201,9 @@ jobs:

doc-links:
needs: [skip_check]
if: github.event.pull_request.draft == false && needs.skip_check.outputs.should_skip != 'true'
if: |
github.event.pull_request.draft == false &&
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true')

name: Intra-doc links
runs-on: ubuntu-latest
Expand Down Expand Up @@ -245,7 +253,9 @@ jobs:

fmt:
needs: [skip_check]
if: github.event.pull_request.draft == false && needs.skip_check.outputs.should_skip != 'true'
if: |
github.event.pull_request.draft == false &&
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true')

name: Rustfmt
timeout-minutes: 30
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:

clippy:
needs: [skip_check]
if: github.event.pull_request.draft == false && needs.skip_check.outputs.should_skip != 'true'
if: |
github.event.pull_request.draft == false &&
(github.event.action == 'ready_for_review' || needs.skip_check.outputs.should_skip != 'true')

name: Clippy
timeout-minutes: 30
Expand Down