mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Do not stale issues with "Issue: Author Provided Repro" (#37469)
Summary: I'm making sure we don't stale issues where the repro has been provided. I'm also moving the bot to run every 10 minutes at 5AM so it will do a pass once overnight, rathern than running 4x during the day. ## Changelog: [INTERNAL] - Do not stale issues with "Issue: Author Provided Repro" Pull Request resolved: https://github.com/facebook/react-native/pull/37469 Test Plan: n/a Reviewed By: cipolleschi Differential Revision: D45953855 Pulled By: cortinico fbshipit-source-id: 299aef0844ce1bc872e3156419adeff675ae2a68
This commit is contained in:
committed by
Facebook GitHub Bot
parent
92c721961a
commit
fa0d403ae0
@@ -1,7 +1,7 @@
|
||||
name: Mark stale issues and pull requests
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0,6,12,18 * * *"
|
||||
- cron: "*/10 5 * * *"
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -18,8 +18,8 @@ jobs:
|
||||
stale-pr-message: 'This PR is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
|
||||
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
|
||||
close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.'
|
||||
exempt-issue-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-pr-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-issue-labels: 'Help Wanted :octocat:, Good first issue, Never gets stale, Issue: Author Provided Repro'
|
||||
exempt-pr-labels: 'Help Wanted :octocat:, Never gets stale'
|
||||
stale-asc:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'facebook/react-native'
|
||||
@@ -36,8 +36,8 @@ jobs:
|
||||
stale-pr-message: 'This PR is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
|
||||
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
|
||||
close-pr-message: 'This PR was closed because it has been stalled for 7 days with no activity.'
|
||||
exempt-issue-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-pr-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-issue-labels: 'Help Wanted :octocat:, Good first issue, Never gets stale, Issue: Author Provided Repro'
|
||||
exempt-pr-labels: 'Help Wanted :octocat:, Never gets stale'
|
||||
stale-needs-author-feedback:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'facebook/react-native'
|
||||
@@ -54,8 +54,8 @@ jobs:
|
||||
stale-pr-message: "This PR is waiting for author's feedback since 24 days. Please provide the requested feedback or this will be closed in 7 days"
|
||||
close-issue-message: "This issue was closed because the author hasn't provided the requested feedback after 7 days."
|
||||
close-pr-message: "This PR was closed because the author hasn't provided the requested feedback after 7 days."
|
||||
exempt-issue-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-pr-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-issue-labels: "Help Wanted :octocat:, Good first issue, Never gets stale, Issue: Author Provided Repro"
|
||||
exempt-pr-labels: "Help Wanted :octocat:, Never gets stale"
|
||||
stale-needs-author-feedback-asc:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'facebook/react-native'
|
||||
@@ -73,5 +73,5 @@ jobs:
|
||||
stale-pr-message: "This PR is waiting for author's feedback since 24 days. Please provide the requested feedback or this will be closed in 7 days"
|
||||
close-issue-message: "This issue was closed because the author hasn't provided the requested feedback after 7 days."
|
||||
close-pr-message: "This PR was closed because the author hasn't provided the requested feedback after 7 days."
|
||||
exempt-issue-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-pr-labels: Help Wanted :octocat:, Good first issue, Never gets stale
|
||||
exempt-issue-labels: "Help Wanted :octocat:, Good first issue, Never gets stale, Issue: Author Provided Repro"
|
||||
exempt-pr-labels: "Help Wanted :octocat:, Never gets stale"
|
||||
|
||||
Reference in New Issue
Block a user