-
Notifications
You must be signed in to change notification settings - Fork 88
41 lines (38 loc) · 1.18 KB
/
bump_version.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Bump Version workflow that is triggered manually
name: Bump Version
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
pcluster-version:
description: 'The target version of ParallelCluster CLI'
required: true
type: string
branch:
description: 'The Github branch name'
required: true
type: string
jobs:
create-pull-requests:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ inputs.branch }}
- name: Modifiy Code to Change version
run: ./util/bump-version.sh ${{ inputs.pcluster-version }}
- name: Create a Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: 'Bump version to ${{ inputs.pcluster-version }}'
title: 'Bump version to ${{ inputs.pcluster-version }}'
body: |
This PR contains version bump.
Auto-generated by Github Action
branch: versionbump${{ inputs.branch }}${{ inputs.pcluster-version }}
delete-branch: true
labels: skip-changelog-update