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

Add stale.yml distribution #16

Merged
merged 3 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 24 additions & 0 deletions .github/workflows/distribute-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Add config for bumping/closing inactive PRs
on:
push:
branches:
- 'master'
paths:
- '.github/workflows/stale.yml'
- '.github/workflows/distribute-stale.yml'

jobs:
replicate_changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: derberg/manage-files-in-multiple-repositories@v2
with:
# needed scopes: repo, workflow
github_token: ${{ secrets.GLOBAL_GH_ACTION_TOKEN }}
# you must specify what pattern to include otherwise all files from the repository will be replicated
patterns_to_include: '.github/dependabot.yml'
commit_message: 'Update stale.yml config'
committer_username: 'Atlas Team'
committer_email: '[email protected]'
exclude_forked: true
24 changes: 0 additions & 24 deletions .github/workflows/globaltest.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Bump/Close inactive PRs
on:
schedule:
- cron: "0 5 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
days-before-pr-stale: 30
days-before-pr-close: 90

stale-pr-label: "stale"
stale-pr-message: "This PR is open and inactive for 30 days. Merging PRs open for a long time is error-prone. Please proceed to merging or make a comment to keep it open. You can also prevent PRs from being tagged stale ot closed with 'keep-open' tag. If there is no activity in 90 days, this PR will be closed"
close-pr-message: "This PR was closed because it has been inactive for 90 days since being marked as stale."

exempt-pr-labels: "keep-open,dependabot,dependencies"

repo-token: ${{ secrets.GITHUB_TOKEN }}