Skip to content

feat(gen): update

feat(gen): update #39

name: Check links on schedule
on:
schedule:
- cron: "59 23 * * 0" # Runs every Sunday at 23:59
push: # for testing purposes, do not merge
jobs:
linkcheck:
runs-on: ubuntu-latest
steps:
- uses: filiph/[email protected]
with:
arguments: https://www.scaleway.com/en/docs/serverless/ >> linkcheck_output.txt
- name: Parse output to variable
if: always()
run: |
{
echo 'LINKCHECK_OUTPUT<<EOF'
cat linkcheck_output.txt
echo EOF
} >> "$GITHUB_ENV"
- name: Send message to Slack
if: always()
uses: slackapi/[email protected]
id: initial_message
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
channel: ${{ secrets.SLACK_CHANNEL_ID }}
text: "Link check results are available in :thread:."
- name: Reply with output of linkcheck
if: always()
uses: slackapi/[email protected] # ref: https://github.com/slackapi/slack-github-action
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
channel: ${{ secrets.SLACK_CHANNEL_ID }}
thread_ts: "{{ steps.initial_message.outputs.ts }}"
text: "$LINKCHECK_OUTPUT"