mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
1723346b83
Bumps [actions/stale](https://github.com/actions/stale) from 4.1.1 to 8.0.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v4.1.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.8 KiB
YAML
41 lines
1.8 KiB
YAML
name: Stale Bot
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
build:
|
|
name: Process issues and pull requests
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Close Stale Issues and Pull Requests
|
|
uses: actions/stale@v8.0.0
|
|
with:
|
|
days-before-issue-stale: 90
|
|
days-before-pr-stale: 30
|
|
stale-issue-message: >
|
|
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.
|
|
stale-pr-message: >
|
|
This pull request 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.
|
|
close-issue-message: >
|
|
This issue has been automatically closed because of inactivity.
|
|
Feel free to reopen it if you think it is still relevant.
|
|
close-pr-message: >
|
|
This pull request has been automatically closed because of inactivity.
|
|
Feel free to reopen it if you think it is still relevant.
|
|
stale-issue-label: was:dropped
|
|
stale-pr-label: was:dropped
|
|
exempt-issue-labels: a:bug,re:security,re:privacy,re:Tor,in:dao,$BSQ bounty,good first issue,Epic,a:feature,is:priority
|
|
exempt-pr-labels: a:bug,re:security,re:privacy,re:Tor,in:dao,$BSQ bounty,good first issue,Epic,a:feature,is:priority
|