Skip to content

Commit a427cba

Browse files
lawrence-u10dclaude
andcommitted
feat(ci): add version-bump workflow for Renovate PRs
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 5725fa7 commit a427cba

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/version-bump.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Version Bump
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
types: [opened, synchronize, reopened]
7+
8+
permissions:
9+
contents: write
10+
pull-requests: read
11+
12+
jobs:
13+
version-bump:
14+
if: github.event.pull_request.user.login == 'utic-renovate[bot]'
15+
uses: Unstructured-IO/infra/.github/workflows/version-bump.yml@main
16+
with:
17+
component-paths: '["."]'
18+
default-bump: patch
19+
update-changelog: true
20+
update-lockfile: true
21+
renovate-app-id: ${{ vars.RENOVATE_APP_ID }}
22+
secrets:
23+
token: ${{ secrets.GITHUB_TOKEN }}
24+
private-pypi-url: ${{ secrets.PRIVATE_PYPI_INDEX_URL }}
25+
renovate-app-private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }}

0 commit comments

Comments
 (0)