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

DA5-15 Recurring merge from main #1320

Merged
merged 43 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
f64fc82
ES-1049: api-scanner
tomstark99 Sep 27, 2023
82d2538
Update CODEOWNERS
ronanbrowne Oct 2, 2023
630821c
Revert test change Update CODEOWNERS
ronanbrowne Oct 2, 2023
39275b6
Update Jenkinsfile
jacob-scott3141 Oct 3, 2023
7682139
Add API Scanner yaml files to CODEOWNERS
jacob-scott3141 Oct 3, 2023
a69ba69
Update Jenkinsfile
jacob-scott3141 Oct 4, 2023
ea5679d
Test adding a breaking change to API
jacob-scott3141 Oct 4, 2023
6cfaa45
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 4, 2023
ca2389c
Update JenkinsApiCompatibility
jacob-scott3141 Oct 4, 2023
e7cf030
Revert VaultNamedQueryCollector.java
jacob-scott3141 Oct 4, 2023
7cba8c3
Cement API
jacob-scott3141 Oct 4, 2023
daa4a47
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 5, 2023
ef64719
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 5, 2023
ae731af
cement api
jacob-scott3141 Oct 6, 2023
cc334c4
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 6, 2023
8ebf3b2
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 6, 2023
ffb8ce0
API scan not needed in schemas
jacob-scott3141 Oct 6, 2023
ab475a5
Merge branch 'jacob/ES-1398' of https://github.com/corda/corda-api in…
jacob-scott3141 Oct 6, 2023
35e36fc
CORE-17623 - Change ACL mappings to add tokenSelection worker. (#1291)
driessamyn Oct 12, 2023
c781f5f
CORE-16323: Add Index on State Version Column (#1295)
jujoramos Oct 12, 2023
c5788ec
CORE-16323: Improve State Manager Index (#1296)
jujoramos Oct 12, 2023
086845e
CORE-17431 utxo_transaction_metadata table and related migrations (#1…
vlajos Oct 13, 2023
2abfc20
CORE-17430 Modify the utxo_transaction_sources table by removing unus…
nkovacsx Oct 13, 2023
1eab83e
CORE-17747 Remove attachments (#1297)
blsemo Oct 13, 2023
40eb1aa
CORE-15552 Add `findUnconsumedStatesByExactType` paging API (#1292)
lankydan Oct 13, 2023
23e83c2
CORE-15758 Configurable thread pool size of the mediator (#1287)
lankydan Oct 13, 2023
c09ddb6
ES-1491: Update CODEOWNERS file for 5.1 code freeze (#1298)
ronanbrowne Oct 16, 2023
13569ae
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 16, 2023
b003f7d
Add deprecation warning to `findUnconsumedStatesByType` (#1300)
relyafi Oct 16, 2023
69a79f0
move yamls to scans dir and cementApi
jacob-scott3141 Oct 16, 2023
d566474
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 16, 2023
25c887c
revert Jenkinsfiles
jacob-scott3141 Oct 16, 2023
a12bd0b
Create workflow remove-stale-branches.yml
jacob-scott3141 Oct 17, 2023
ef8a898
Merge pull request #1301 from corda/jacob/ES-1485
jacob-scott3141 Oct 17, 2023
6211fc3
Add cron job to stale branch workflow
jacob-scott3141 Oct 17, 2023
decde62
Merge pull request #1303 from corda/jacob/ES-1485
jacob-scott3141 Oct 17, 2023
262d21b
CORE-17502 Added token selection worker HTTP endpoint definition. (#1…
owenstanford Oct 23, 2023
eb1d079
CORE-17768 Topology changes - Use new topics (#1306)
mbrkic-r3 Oct 24, 2023
c9c958e
Merge branch 'release/os/5.1' into jacob/ES-1398
jacob-scott3141 Oct 25, 2023
e6d293a
Merge pull request #1274 from corda/jacob/ES-1398
jacob-scott3141 Oct 25, 2023
fc5891e
Merge branch 'release/os/5.1' into alex/DA5-15-recurring-merge-2
ac101m Oct 27, 2023
072ae2e
Restore pre-freeze code owners file
ac101m Oct 27, 2023
8753141
Add InteropProcessorEvent avro type
ac101m Oct 27, 2023
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
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
1 change: 1 addition & 0 deletions application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'corda-api.common-library'
id 'corda.common-publishing'
id 'corda.java-only'
id 'corda.api-scanner'
}

description 'Corda Application'
Expand Down
Loading