Skip to content

A GitHub Action that closes issues whose titles include a date that's in the past.

License

Notifications You must be signed in to change notification settings

mxie/close-outdated-issues-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

close-outdated-issues-action

A GitHub Action that closes issues whose titles contain a date that has passed.

The following date formats are supported:

  • YYYY-MM-DD
  • YY-MM-DD

where,

  • the leading zero for MM and DD is optional to represent months January through September.
  • the separator (- in the examples) can be any character.

Usage

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    # replace `main` with release tag
      with:
        token: ${{ secrets.GITHUB_TOKEN }}

About

A GitHub Action that closes issues whose titles include a date that's in the past.

Resources

License

Stars

Watchers

Forks

Packages

No packages published