Skip to content

Commit

Permalink
Update CI files
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
pulpbot authored and mdellweg committed Sep 12, 2023
1 parent f65463a commit 2fa1408
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 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-244-g7bb934c
2021.08.26-245-gdbdef2f
7 changes: 7 additions & 0 deletions .github/workflows/create-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:

steps:
- uses: actions/checkout@v3
path: pulpcore
with:
fetch-depth: 1

Expand All @@ -40,11 +41,13 @@ jobs:
echo ::endgroup::
- name: Setting secrets
working-directory: pulpcore
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
working-directory: pulpcore
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 }}" ]]
Expand All @@ -54,16 +57,19 @@ jobs:
fi
- name: Create ${{ inputs.name }} release branch
working-directory: pulpcore
run: |
git checkout -b ${{ inputs.name }}
git push origin ${{ inputs.name }}
- name: Bump version on main branch
working-directory: pulpcore
run: |
git checkout main
bump2version --no-commit minor
- name: Remove entries from CHANGES directory
working-directory: pulpcore
run: |
find CHANGES -type f -regex ".*\.\(bugfix\|doc\|feature\|misc\|deprecation\|removal\)" -exec git rm {} +
Expand All @@ -83,6 +89,7 @@ jobs:
- name: Make a PR with version bump and without CHANGES/*
uses: peter-evans/create-pull-request@v4
with:
path: pulpcore
token: ${{ secrets.RELEASE_TOKEN }}
committer: pulpbot <pulp-infra@redhat.com>
author: pulpbot <pulp-infra@redhat.com>
Expand Down
2 changes: 1 addition & 1 deletion docs/template_gitref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.08.26-244-g7bb934c
2021.08.26-245-gdbdef2f

0 comments on commit 2fa1408

Please sign in to comment.