Skip to content

Commit 5196aff

Browse files
committed
ci(esdk): add known-bug-fix reconciliation caller workflow
On a merge to the default branch that changes a test-server commons-configuration.json, invoke the reusable aws-crypto-tools-commons workflow to reconcile this repo's declared fixes into the authoritative known-bug ledger. Requires the COMMONS_RECONCILE_TOKEN secret.
1 parent 0ceb1f9 commit 5196aff

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Reconcile this repo's merged known-bug fixes into the authoritative commons
2+
# ledger. On a merge to the default branch that changes this repo's
3+
# commons-configuration.json, call the reusable commons workflow: it removes the
4+
# bugs this repo declared fixed (its `knownBugs`) from aws-crypto-tools-commons'
5+
# known-bugs.json and opens a PR there. All logic lives in commons; this file
6+
# only wires the trigger + the commons-write token.
7+
name: Reconcile known-bug fixes
8+
9+
on:
10+
push:
11+
branches: [master]
12+
paths: ["test-server/commons-configuration.json"]
13+
14+
jobs:
15+
reconcile:
16+
uses: aws/aws-crypto-tools-commons/.github/workflows/reconcile-known-bug-fixes.yml@main
17+
with:
18+
commons-config-path: test-server/commons-configuration.json
19+
secrets:
20+
commons-token: ${{ secrets.COMMONS_RECONCILE_TOKEN }}

0 commit comments

Comments
 (0)