There was an error while loading. Please reload this page.
2 parents b030fca + 289c092 commit c49a4ebCopy full SHA for c49a4eb
.github/workflows/manage.sf.api.versions.yml
@@ -0,0 +1,22 @@
1
+name: Manage SF API Versions
2
+on:
3
+ workflow_dispatch:
4
+ inputs:
5
+ api-version:
6
+ description: 'api version in the format XX e.g 58'
7
+ required: true
8
+ type: string
9
+jobs:
10
+ update:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - uses: apex-enterprise-patterns/manage-sf-api-version@v1.0.0
15
+ with:
16
+ api-version: ${{inputs.api-version}}
17
+ - uses: peter-evans/create-pull-request@v5
18
19
+ title: 'Bump API Versions to ${{inputs.api-version}}.0'
20
+ body: 'Automatically bumped by GitHub Actions '
21
+ branch: 'devops/bump-api-versions-v${{inputs.api-version}}.0'
22
+ commit-message: 'chore: bump api to v${{inputs.api-version}}.0'
0 commit comments