Files
neovim/.github/workflows/lintdocurls.yml
Yochem van Rosmalen b058a801e7 ci(lintdocurls): use sed -e flag to mark argument as command #36776
Problem:
Sed thinks the argument starting with `1i` (and triple backticks) is the
suffix for the backup file because it comes right after the `-i` flag.
See for example
https://github.com/neovim/neovim/actions/runs/19774967693/job/56665991723.

Solution:
Explicitly mark it as command using the `-e` flag.
2025-12-01 16:54:10 -05:00

40 lines
1.1 KiB
YAML

name: lintdoc-urls
on:
schedule:
- cron: '22 22 * * 5'
workflow_dispatch:
jobs:
check-unreachable-urls:
runs-on: ubuntu-latest
permissions:
issues: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up git config
run: |
git config --global user.name 'marvim'
git config --global user.email 'marvim@users.noreply.github.com'
- uses: ./.github/actions/setup
- name: Check for unreachable URLs
id: unreachable-urls
env:
run_url: https://github.com/neovim/neovim/actions/runs/${{ github.run_id }}
run: |
OUT_FILE=$(mktemp)
make lintdocurls 2>&1 | sed -n '/invalid URLs/,/^}/p' > $OUT_FILE
if [ -n $OUT_FILE -a -s $OUT_FILE ]; then
# wrap output in a code block
sed -i -e '1i```' -e '$a```' $OUT_FILE
echo "Automatically generated on $(date) from $run_url" >> $OUT_FILE
gh issue reopen 36597
gh issue edit 36597 --body-file $OUT_FILE
fi