This repository has been archived by the owner on Mar 18, 2024. It is now read-only.
Mark Stale Issues/PRs #815
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Automation to mark inactive issues/prs as stale | |
name: Mark Stale Issues/PRs | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
jobs: | |
stale: | |
if: github.repository_owner == 'WebXDAO' | |
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-issue-activity' | |
days-before-stale: 14 | |
days-before-close: 14 |