File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6060 SLACK_CHANNEL_ID : op://platform/slack-bot/SLACK_CHANNEL_ID
6161 HARBOR_USER : op://platform/harbor/username
6262 HARBOR_PASS : op://platform/harbor/password
63+ PAT_TOKEN : op://platform/github-commit-pat/credential
6364
6465 # Label QA as running and notify Slack (only for non-draft PRs)
6566 - name : Label QA as running
@@ -127,6 +128,18 @@ jobs:
127128 if : github.event_name == 'pull_request' || github.event_name == 'push'
128129 run : bun run docs:helm
129130
131+ # Commit generated version metadata and README updates on release tags
132+ - name : Auto-commit release assets
133+ if : github.event_name == 'push' && steps.version.outputs.tag == 'latest'
134+ uses : stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 # v5
135+ with :
136+ commit_message : " chore(release): sync generated assets [skip ci]"
137+ branch : main
138+ file_pattern : ' package.json **/package.json charts/**/Chart.yaml charts/**/README.md README.md'
139+ github_token : ${{ env.PAT_TOKEN }}
140+ commit_author_name : ' SettleMint Release Bot'
141+ commit_author_email : ' support@settlemint.com'
142+
130143 - name : Docker meta
131144 if : github.event_name == 'pull_request' || github.event_name == 'push'
132145 id : meta
You can’t perform that action at this time.
0 commit comments