-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating the github actions across the nailgun (#858)
- Loading branch information
1 parent
28cd2af
commit 42c9bab
Showing
4 changed files
with
71 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Warn and Close stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: '30 5 * * *' | ||
|
||
jobs: | ||
warn_and_close_stails: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v6 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-issue-stale: 90 | ||
days-before-pr-stale: 45 | ||
days-before-issue-close: 7 | ||
days-before-pr-close: 7 | ||
stale-issue-message: 'This issue has not been updated in the past 90 days.' | ||
stale-pr-message: 'This pull request has not been updated in the past 45 days.' | ||
close-issue-message: 'This issue is now being closed after stale warnings.' | ||
close-pr-message: 'This pull request is now being closed after stale warnings.' | ||
only-issue-labels: 'Failed_AutoCherryPick' | ||
remove-stale-when-updated: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters