8000 feat: S3 source connector (#726) · aiven/aiven-docs@7c3d06b · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Check links

Check links #50

Workflow file for this run

name: Check links
on:
schedule:
- cron: '0 1 * * 4' # every Thursday, at 1AM
workflow_dispatch:
jobs:
check-links:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run Linkchecker
run: |
make check-links
- name: Ping on Slack
uses: slackapi/slack-github-action@v1.27.0
if: ${{ failure() && github.ref_name == 'main' }}
with:
payload: |
{
"runId": "${{github.run_id}}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_BROKEN_LINKS }}
0