Skip to content

Instantly share code, notes, and snippets.

@killshot13
Created June 28, 2021 12:39
Show Gist options
  • Select an option

  • Save killshot13/932846f26366ea4b223af0239179450b to your computer and use it in GitHub Desktop.

Select an option

Save killshot13/932846f26366ea4b223af0239179450b to your computer and use it in GitHub Desktop.
GitHub Repo Workflows & Files
name: Mark stale issues and pull requests
on:
schedule:
- cron: "30 1 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment