Skip to content

Commit

Permalink
Merge pull request #1223 from pulp/minor-version-bump
Browse files Browse the repository at this point in the history
Bump minor version
  • Loading branch information
hstct authored Jan 22, 2025
2 parents 79c2a0d + f43de27 commit 09fea2f
Show file tree
Hide file tree
Showing 10 changed files with 36 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/update_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,35 @@ jobs:
env:
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
continue-on-error: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_deb"
ref: "3.5"

- name: "Run update"
working-directory: "pulp_deb"
run: |
../plugin_template/scripts/update_ci.sh --release
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
id: "create_pr_3_5"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_deb"
committer: "pulpbot <[email protected]>"
author: "pulpbot <[email protected]>"
title: "Update CI files for branch 3.5"
branch: "update-ci/3.5"
base: "3.5"
delete-branch: true
- name: "Mark PR automerge"
working-directory: "pulp_deb"
run: |
gh pr merge --rebase --auto "${{ steps.create_pr_3_5.outputs.pull-request-number }}"
if: "steps.create_pr_3_5.outputs.pull-request-number"
env:
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
continue-on-error: true
...
1 change: 0 additions & 1 deletion CHANGES/+add-dsc-sha256.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1141.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1167.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1190.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1204.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/860.feature

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_deb/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig):

name = "pulp_deb.app"
label = "deb"
version = "3.5.0.dev"
version = "3.6.0.dev"
python_package_name = "pulp_deb"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = "pulp-deb"
version = "3.5.0.dev"
version = "3.6.0.dev"
description = "pulp-deb plugin for the Pulp Project"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -121,7 +121,7 @@ exclude = '''
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

current_version = "3.5.0.dev"
current_version = "3.6.0.dev"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
3 changes: 2 additions & 1 deletion template_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ docker_fixtures: true
flake8: true
flake8_ignore: []
github_org: pulp
latest_release_branch: '3.4'
latest_release_branch: '3.5'
lint_requirements: true
os_required_packages: []
parallel_test_workers: 8
Expand Down Expand Up @@ -62,6 +62,7 @@ stalebot_days_until_close: 30
stalebot_days_until_stale: 90
stalebot_limit_to_pulls: true
supported_release_branches:
- '3.4'
- '3.3'
- '3.2'
sync_ci: true
Expand Down

0 comments on commit 09fea2f

Please sign in to comment.