Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: investigate stalebot issue and tweak params #20047

Merged
merged 32 commits into from
Jul 24, 2023
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
45e4610
Investigate stalebot issue
pedronfigueiredo Jul 17, 2023
09a5d1b
wip cleanup
pedronfigueiredo Jul 19, 2023
6472a2f
wip cleanup
pedronfigueiredo Jul 19, 2023
f9dc345
wip cleanup
pedronfigueiredo Jul 19, 2023
0bc3685
wip cleanup
pedronfigueiredo Jul 19, 2023
e961501
wip cleanup
pedronfigueiredo Jul 19, 2023
3ff8960
wip cleanup
pedronfigueiredo Jul 19, 2023
ace9201
wip cleanup
pedronfigueiredo Jul 19, 2023
e35cb9a
wip cleanup
pedronfigueiredo Jul 20, 2023
8e8aef8
wip cleanup
pedronfigueiredo Jul 20, 2023
6b781fd
wip cleanup
pedronfigueiredo Jul 20, 2023
c482975
wip cleanup
pedronfigueiredo Jul 20, 2023
b7c5631
wip cleanup
pedronfigueiredo Jul 20, 2023
395544b
wip cleanup
pedronfigueiredo Jul 20, 2023
51f365d
wip cleanup
pedronfigueiredo Jul 20, 2023
08b593e
wip cleanup
pedronfigueiredo Jul 20, 2023
ae6e42c
wip cleanup
pedronfigueiredo Jul 20, 2023
23868e0
wip cleanup
pedronfigueiredo Jul 20, 2023
7d7c68c
wip cleanup
pedronfigueiredo Jul 20, 2023
25d7e0d
wip cleanup
pedronfigueiredo Jul 20, 2023
aaa3d22
wip cleanup
pedronfigueiredo Jul 20, 2023
342cb46
wip cleanup
pedronfigueiredo Jul 20, 2023
93375a0
wip cleanup
pedronfigueiredo Jul 20, 2023
0f3e2c6
wip cleanup
pedronfigueiredo Jul 20, 2023
e4799ee
wip cleanup
pedronfigueiredo Jul 20, 2023
5bdfdf2
wip cleanup
pedronfigueiredo Jul 20, 2023
c324174
wip cleanup
pedronfigueiredo Jul 20, 2023
e557db6
wip cleanup
pedronfigueiredo Jul 20, 2023
99b8fa9
wip cleanup
pedronfigueiredo Jul 24, 2023
e05e349
wip cleanup
pedronfigueiredo Jul 24, 2023
b4c1aba
wip cleanup
pedronfigueiredo Jul 24, 2023
0ac889e
wip cleanup
pedronfigueiredo Jul 24, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions .github/workflows/stale-issues-pr.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: 'Close stale issues and PRs'

# run every 2 hours
on:
schedule:
- cron: '0 12 * * *'
- cron: '0 */2 * * *'

jobs:
stale:
Expand All @@ -12,17 +14,16 @@ jobs:
steps:
- uses: actions/stale@72afbce2b0dbd1d903bb142cebe2d15dc307ae57
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity in the last 90 days. It will be closed in 45 days. Thank you for your contributions.'
stale-issue-label: 'stale'
only-issue-labels: 'type-bug'
exempt-issue-labels: 'type-security, type-pinned, feature-request, awaiting-metamask'
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity in the last 60 days. It will be closed in 14 days. Thank you for your contributions.'
stale-pr-label: 'stale'
exempt-pr-labels: 'work-in-progress'
close-issue-message: 'This issue was closed because there has been no follow up activity in the last 7 days. If you feel this was closed in error, please reopen and provide evidence on the latest release of the extension. Thank you for your contributions.'
close-pr-message: 'This PR was closed because there has been no follow up activity in the last 7 days. Thank you for your contributions.'
exempt-issue-labels: 'type-security'
days-before-issue-stale: 90
days-before-pr-stale: 60
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity in the last 90 days. It will be closed in 45 days if there is no further activity. The MetaMask team intends on reviewing this issue before close, and removing the stale label if it is still a bug. We welcome new comments on this issue. We do not intend on closing issues if they report bugs that are still reproducible. Thank you for your contributions.'
days-before-issue-close: 45
close-issue-message: 'This issue was closed because there has been no follow up activity in the last 45 days. If you feel this was closed in error, please reopen and provide evidence on the latest release of the extension. Thank you for your contributions.'
stale-pr-label: 'stale'
days-before-pr-stale: 60
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity in the last 60 days. It will be closed in 14 days. Thank you for your contributions.'
days-before-pr-close: 14
operations-per-run: 1
close-pr-message: 'This PR was closed because there has been no follow up activity in the last 14 days. Thank you for your contributions.'
operations-per-run: 600