* Test against deployment url * Remove infinite redirect configuration * Add DEPLOYMENT_URL for builds against master * website: Update README * tip on seconds * Test with GHA timeout_minutes clause * Add continue on error for poll job * Add empty url check * Move to pull-request path filter * Remove www for packer.io * Apply suggestions from code review * Update path filter Vercel deploys on any change under the website directory. * Use custom action as test Co-authored-by: Adrien Delorme <azr@users.noreply.github.com>
18 lines
496 B
YAML
18 lines
496 B
YAML
on:
|
|
schedule:
|
|
- cron: "45 0 * * *"
|
|
name: Check Markdown links on main branch
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set deployment URL env
|
|
run:
|
|
echo "DEPLOYMENT_URL=https://packer-git-master.hashicorp.vercel.app" >> $GITHUB_ENV
|
|
- uses: actions/checkout@master
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
file-extension: 'mdx'
|
|
folder-path: 'website/content'
|