Skip to content

Commit bbc071a

Browse files
committed
addition of the manage sf api version github action
1 parent af8638d commit bbc071a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)