Skip to content

Commit

Permalink
Introduce GitHub Action to test resolvability of external links [DOC-…
Browse files Browse the repository at this point in the history
…253] (#431)

Introduces [functionality introduced in
`hz-docs`](hazelcast/hz-docs#1382) to rest of
docs codebase.
  • Loading branch information
JackPGreen authored Jan 27, 2025
1 parent 2cf69bb commit 89b044a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test-external-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test external links

on:
workflow_dispatch:
schedule:
- cron: "0 12 * * 1" # Runs at 12:00, only on Monday

jobs:
test-external-links:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: hazelcast/hz-docs/.github/actions/test-external-links@main
with:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_DOCS }}

0 comments on commit 89b044a

Please sign in to comment.