Skip to content

Commit

Permalink
Merge pull request #469 from apex-enterprise-patterns/devops/github-a…
Browse files Browse the repository at this point in the history
…ction-bump-api-utility

addition of the manage sf api version github action
  • Loading branch information
ImJohnMDaniel authored Nov 6, 2023
2 parents d482301 + c584d11 commit 096d82b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/manage.sf.api.versions.yml
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'

0 comments on commit 096d82b

Please sign in to comment.