Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Mark Stale Issues/PRs #804

Mark Stale Issues/PRs

Mark Stale Issues/PRs #804

Workflow file for this run

# 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