-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
addition of the manage sf api version github action
- Loading branch information
1 parent
daef0cf
commit 21eaed2
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Manage SF API Versions | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
api-version: | ||
description: 'api version in the format XX e.g 58' | ||
required: true | ||
type: string | ||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: apex-enterprise-patterns/[email protected] | ||
with: | ||
api-version: ${{inputs.api-version}} | ||
- uses: peter-evans/create-pull-request@v5 | ||
with: | ||
title: 'Bump API Versions to ${{inputs.api-version}}.0' | ||
body: 'Automatically bumped by GitHub Actions ' | ||
branch: 'devops/bump-api-versions-v${{inputs.api-version}}.0' | ||
commit-message: 'chore: bump api to v${{inputs.api-version}}.0' |