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

Update CI files for branch main #290

Merged
merged 1 commit into from
Sep 18, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/template_gitref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.08.26-243-g0b216b2
2021.08.26-246-g98b439a
7 changes: 7 additions & 0 deletions .github/workflows/create-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 1
path: pulp_ostree

- uses: actions/setup-python@v3
with:
Expand All @@ -40,11 +41,13 @@ jobs:
echo ::endgroup::

- name: Setting secrets
working-directory: pulp_ostree
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_ostree
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,22 +57,26 @@ jobs:
fi

- name: Create ${{ inputs.name }} release branch
working-directory: pulp_ostree
run: |
git checkout -b ${{ inputs.name }}
git push origin ${{ inputs.name }}

- name: Bump version on main branch
working-directory: pulp_ostree
run: |
git checkout main
bump2version --no-commit minor

- name: Remove entries from CHANGES directory
working-directory: pulp_ostree
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_ostree
token: ${{ secrets.RELEASE_TOKEN }}
committer: pulpbot <pulp-infra@redhat.com>
author: pulpbot <pulp-infra@redhat.com>
Expand Down
Loading