feat: add Big and Bubbly Focaccia. Fixes #1278. #3112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: link-check | |
on: # yamllint disable-line rule:truthy | |
# Schedule check each day at 8 UTC | |
schedule: [{cron: "0 8 * * *"}] | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**/*.md' | |
- 'cook/**/*.cook' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
markdown-link-check: | |
name: Markdown link check | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Get event type | |
id: get-type | |
run: | | |
if [ "${{ github.event_name }}" == "schedule" ]; then | |
echo "MOD_ONLY=no" >> "$GITHUB_OUTPUT" | |
else | |
echo "MOD_ONLY=yes" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Check markdown links | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
folder-path: './docs' | |
config-file: './mlc_config.json' | |
use-quiet-mode: 'yes' | |
check-modified-files-only: ${{ steps.get-type.outputs.MOD_ONLY }} | |
base-branch: 'main' |