-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[noissue]
- Loading branch information
Showing
4 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-243-g0b216b2 | ||
2021.08.26-246-g98b439a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
path: pulp_gem | ||
|
||
- uses: actions/setup-python@v3 | ||
with: | ||
|
@@ -40,11 +41,13 @@ jobs: | |
echo ::endgroup:: | ||
- name: Setting secrets | ||
working-directory: pulp_gem | ||
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: pulp_gem | ||
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 }}" ]] | ||
|
@@ -54,22 +57,26 @@ jobs: | |
fi | ||
- name: Create ${{ inputs.name }} release branch | ||
working-directory: pulp_gem | ||
run: | | ||
git checkout -b ${{ inputs.name }} | ||
git push origin ${{ inputs.name }} | ||
- name: Bump version on main branch | ||
working-directory: pulp_gem | ||
run: | | ||
git checkout main | ||
bump2version --no-commit minor | ||
- name: Remove entries from CHANGES directory | ||
working-directory: pulp_gem | ||
run: | | ||
find CHANGES -type f -regex ".*\.\(bugfix\|doc\|feature\|misc\|deprecation\|removal\)" -exec git rm {} + | ||
- name: Make a PR with version bump and without CHANGES/* | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
path: pulp_gem | ||
token: ${{ secrets.RELEASE_TOKEN }} | ||
committer: pulpbot <[email protected]> | ||
author: pulpbot <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2021.08.26-228-g9949044 | ||
2021.08.26-246-g98b439a |