Skip to content
Merged
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
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ jobs:
run: ./ci/validate_asciidoc.sh

validate_links:
if: github.event_name != 'merge_group'
runs-on: github-ubuntu-latest-s
name: Validate Links
timeout-minutes: 120
Expand All @@ -157,7 +158,10 @@ jobs:
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: link-probing.cache
key: link-probing-cache
key: link-probing-cache-${{ github.sha }}
restore-keys: |
link-probing-cache-${{ github.sha }}
link-probing-cache-
- name: Validate links
run: |
./ci/validate_links.sh link-probing.cache
Expand All @@ -167,7 +171,7 @@ jobs:
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
with:
path: link-probing.cache
key: link-probing-cache
key: link-probing-cache-${{ github.sha }}

all_required_checks:
needs:
Expand All @@ -176,7 +180,7 @@ jobs:
- validate_rules
- validate_ci_tests
runs-on: github-ubuntu-latest-s
name: All Required Checks
name: all_required_checks
steps:
- name: All required checks passed
run: echo 'All required checks have passed'
Loading