Skip to content

actions: adding a workflow to check for stale hints #1

actions: adding a workflow to check for stale hints

actions: adding a workflow to check for stale hints #1

Workflow file for this run

name: Check for stale hints
on:
pull_request:
workflow_dispatch:
jobs:
build:
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