Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 3.12.0 #1

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 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:
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def read(fname):
"clustermgtd = slurm_plugin.clustermgtd:main",
"computemgtd = slurm_plugin.computemgtd:main",
]
version = "3.11.0"
version = "3.12.0"
requires = ["boto3>=1.7.55", "retrying>=1.3.3"]

setup(
Expand Down