Skip to content

Commit

Permalink
Merge pull request #1301 from corda/jacob/ES-1485
Browse files Browse the repository at this point in the history
ES-1485 PR and Branch housekeeping automation dry run
  • Loading branch information
jacob-scott3141 authored Oct 17, 2023
2 parents b003f7d + a12bd0b commit ef8a898
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/remove-stale-branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
workflow_dispatch: # this will eventually be a cron job - for now it is used in manual testing
inputs:
days_before_stale:
type: number
default: 30
days_before_delete:
type: number
default: 14

jobs:
remove-stale-branches:
name: Remove stale branches
runs-on: ubuntu-latest
steps:
- uses: fpicalausa/[email protected]
with:
dry-run: true
days-before-branch-stale: ${{ inputs.days_before_stale }}
days-before-branch-delete: ${{ inputs.days_before_delete }}
stale-branch-message: "@{author} The branch [{branchName}]({branchUrl}) hasn't been updated in the last 30 days and is marked as stale. It will be removed in 14 days.\r\nIf you want to keep this branch around, delete this comment or add new commits to this branch."
exempt-protected-branches: true
exempt-branches-regex: "^(release\\/|feature\\/|poc\\/).*"

0 comments on commit ef8a898

Please sign in to comment.