firefly-iii/.github/workflows/stale.yml

35 lines
1.1 KiB
YAML
Raw Normal View History

2020-11-29 07:03:13 -06:00
name: "Close stale issues"
on:
schedule:
- cron: "30 1 * * *"
2022-12-07 13:26:14 -06:00
workflow_dispatch:
2020-11-29 07:03:13 -06:00
permissions:
contents: read
2020-11-29 07:03:13 -06:00
jobs:
stale:
permissions:
issues: write # for actions/stale to close stale issues
pull-requests: write # for actions/stale to close stale PRs
2020-11-29 07:03:13 -06:00
runs-on: ubuntu-latest
steps:
2022-12-07 13:25:27 -06:00
- uses: actions/stale@v6
2020-11-29 07:03:13 -06:00
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: >
2023-02-19 01:52:46 -06:00
Hi there! This is an automatic reply. `Share and enjoy`
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
Thank you for your contributions.
2020-11-29 07:03:13 -06:00
stale-pr-message: >
2023-02-19 01:52:46 -06:00
Hi there! This is an automatic reply. `Share and enjoy`
This PR has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
Thank you for your contributions.
2020-11-29 07:03:13 -06:00
days-before-stale: 14
days-before-close: 7
2022-08-22 22:41:05 -05:00
exempt-issue-labels: 'enhancement,feature,bug,announcement,layout-v3'