We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af8638d commit bbc071aCopy full SHA for bbc071a
.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/[email protected]
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