Skip to content

Added __FILELINE__ and it's test file #4

Added __FILELINE__ and it's test file

Added __FILELINE__ and it's test file #4

Workflow file for this run

name: Check for stale hints
on:
pull_request:
workflow_dispatch:
jobs:
check_stale_hints:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- run: |
L=$(.scripts/remove_stale_hints.sh list)
if [ "$L" != "" ]; then
echo "There are stale hints:"
echo "$L"
false
fi