Skip to content

Commit

Permalink
Update CI files (#1556)
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
pulpbot authored Aug 21, 2023
1 parent baa20b1 commit da49388
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/template_gitref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.08.26-240-gd3a60ef
2021.08.26-241-g9cfc63e
10 changes: 5 additions & 5 deletions .github/workflows/create-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install python dependencies
run: |
echo ::group::PYDEPS
pip install bump2version
pip install bump2version jinja2 pyyaml
echo ::endgroup::
- name: Setting secrets
Expand All @@ -47,16 +47,16 @@ jobs:
- 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" != "${{ github.event.inputs.name }}" ]]
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 ${{ github.event.inputs.name }} release branch
- name: Create ${{ inputs.name }} release branch
run: |
git checkout -b ${{ github.event.inputs.name }}
git push origin ${{ github.event.inputs.name }}
git checkout -b ${{ inputs.name }}
git push origin ${{ inputs.name }}
- name: Bump version on main branch
run: |
Expand Down
3 changes: 2 additions & 1 deletion template_config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This config represents the latest values used when running the plugin-template. Any settings that
# were not present before running plugin-template have been added with their default values.

# generated with [email protected]240-gd3a60ef
# generated with [email protected]241-g9cfc63e

additional_repos: []
api_root: /pulp/
Expand All @@ -18,6 +18,7 @@ ci_update_branches:
- '0.16'
- '0.17'
ci_update_docs: true
ci_update_release_behavior: null
cli_package: pulp-cli
cli_repo: https://github.com/pulp/pulp-cli.git
core_import_allowed: []
Expand Down

0 comments on commit da49388

Please sign in to comment.