Skip to content

Create New Release Branch #6

Create New Release Branch

Create New Release Branch #6

Workflow file for this run

# WARNING: DO NOT EDIT!
#
# This file was generated by plugin_template, and is managed by it. Please use
# './plugin-template --github pulpcore' to update this file.
#
# For more info visit https://github.com/pulp/plugin_template
---
name: Create New Release Branch
on:
workflow_dispatch:
inputs:
name:
description: "Branch name (e.g. 3.14)"
required: true
update_ci_branches:
description: "Behavior for updating ci_update_branches"
required: true
type: choice
default: "none"
options:
- "append-version"
- "replace-previous-version"
- "none"
env:
RELEASE_WORKFLOW: true
jobs:
create-branch:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install python dependencies
run: |
echo ::group::PYDEPS
pip install bump2version
echo ::endgroup::
- name: Setting secrets
run: python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT"
env:
SECRETS_CONTEXT: ${{ toJson(secrets) }}
- name: Verify that branch name matches current version string on main branch
run: |
X_Y_VERSION=$(grep version setup.py | sed -rn 's/version="(.*)\.0((a[0-9]+)|(b[0-9]+))?\.dev",/\1/p' | awk '{$1=$1};1')
if [[ "$X_Y_VERSION" != "${{ inputs.name }}" ]]
then
echo "Branch name doesn't match the current version string $X_Y_VERSION."
exit 1
fi
- name: Create ${{ inputs.name }} release branch
run: |
git checkout -b ${{ inputs.name }}
git push origin ${{ inputs.name }}
- name: Bump version on main branch
run: |
git checkout main
bump2version --no-commit minor
- name: Remove entries from CHANGES directory
run: |
find CHANGES -type f -regex ".*\.\(bugfix\|doc\|feature\|misc\|deprecation\|removal\)" -exec git rm {} +
- name: Checkout plugin template
uses: actions/checkout@v3
if: ${{ "$inputs.update_ci_branches" != "none" }}

Check failure on line 81 in .github/workflows/create-branch.yml

View workflow run for this annotation

GitHub Actions / Create New Release Branch

Invalid workflow file

The workflow is not valid. .github/workflows/create-branch.yml (Line: 81, Col: 13): Unexpected symbol: '"$inputs'. Located at position 1 within expression: "$inputs.update_ci_branches" != "none" .github/workflows/create-branch.yml (Line: 88, Col: 13): Unexpected symbol: '"$inputs'. Located at position 1 within expression: "$inputs.update_ci_branches" != "none"
with:
repository: pulp/plugin_template
path: plugin_template
fetch-depth: 0
- name: Update CI branches in template_config
if: ${{ "$inputs.update_ci_branches" != "none" }}
working-directory: plugin_template
run: |
ARGS="--add-version-ci-update-branches ${{ inputs.name }}"
if [ ${{ inputs.update_ci_branches }} == "replace-previous-version" ]; then
ARGS="$ARGS --replace-previous-version-ci-update-branches"
fi
python3 ./plugin-template pulpcore --github $ARGS
git add -A
- name: Make a PR with version bump and without CHANGES/*
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.RELEASE_TOKEN }}
committer: pulpbot <[email protected]>
author: pulpbot <[email protected]>
branch: minor-version-bump
base: main
title: Bump minor version
body: '[noissue]'
commit-message: |
Bump minor version
[noissue]
delete-branch: true