We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5725fa7 commit a427cbaCopy full SHA for a427cba
1 file changed
.github/workflows/version-bump.yml
@@ -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