You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Close Outdated Issues
v1.2
A GitHub Action that closes issues whose titles include a date that's in the past.
Dates are assumed to be in the format of MM-DD-YY[YY]
where -
could be any
delimeter.
name: Check for past issues
on:
schedule:
- cron: 0 9 * * 5
jobs:
run-action:
runs-on: ubuntu-latest
steps:
- name: Close issues
uses: mxie/close-outdated-issues-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}