Skip to content

Commit

Permalink
Merge branch 'release/os/5.1' into jacob/ES-1398
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-scott3141 authored Oct 25, 2023
2 parents 25c887c + eb1d079 commit c9c958e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/remove-stale-branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Remove stale branches'
on:
schedule:
- cron: '0 0 * * 1-5'

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: 30
days-before-branch-delete: 14
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\\/).*"
operations-per-run: 30
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,5 @@ private BootConfig() {
public static final String VERIFICATION_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.verification";
public static final String UNIQUENESS_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.uniqueness";
public static final String PERSISTENCE_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.persistence";
public static final String TOKEN_SELECTION_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.tokenSelection";
}
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ topics:
consumers:
- flowMapper
producers:
- flowMapper
- link-manager
config:
FlowStart:
Expand All @@ -129,5 +130,6 @@ topics:
- flow
producers:
- flowMapper
- tokenSelection
config:

0 comments on commit c9c958e

Please sign in to comment.