-
Notifications
You must be signed in to change notification settings - Fork 83
105 lines (88 loc) · 3.01 KB
/
create-branch.yml
File metadata and controls
105 lines (88 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# WARNING: DO NOT EDIT!
#
# This file was generated by plugin_template, and is managed by it. Please use
# './plugin-template --github pulp_python' to update this file.
#
# For more info visit https://github.com/pulp/plugin_template
---
name: "Create New Release Branch"
on:
workflow_dispatch:
env:
RELEASE_WORKFLOW: true
jobs:
create-branch:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
permissions:
contents: "write"
steps:
- uses: "actions/checkout@v6"
with:
fetch-depth: 0
path: "pulp_python"
- uses: "actions/checkout@v6"
with:
fetch-depth: 1
repository: "pulp/plugin_template"
path: "plugin_template"
- uses: "actions/setup-python@v6"
with:
python-version: "3.11"
- name: "Install python dependencies"
run: |
pip install bump-my-version packaging -r plugin_template/requirements.txt
- name: "Setting secrets"
working-directory: "pulp_python"
run: |
python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT"
env:
SECRETS_CONTEXT: "${{ toJson(secrets) }}"
- name: "Determine new branch name"
working-directory: "pulp_python"
run: |
# Just to be sure...
git checkout main
NEW_BRANCH="$(bump-my-version show new_version --increment release | sed -Ene 's/^([[:digit:]]+\.[[:digit:]]+)\.[[:digit:]]+$/\1/p')"
if [ -z "$NEW_BRANCH" ]
then
echo Could not determine the new branch name.
exit 1
fi
echo "NEW_BRANCH=${NEW_BRANCH}" >> "$GITHUB_ENV"
- name: "Create release branch"
working-directory: "pulp_python"
run: |
git branch "${NEW_BRANCH}"
- name: "Bump version on main branch"
working-directory: "pulp_python"
run: |
bump-my-version bump --no-commit minor
- name: "Remove entries from CHANGES directory"
working-directory: "pulp_python"
run: |
find CHANGES -type f -regex ".*\.\(bugfix\|doc\|feature\|misc\|deprecation\|removal\)" -exec git rm {} +
- name: "Update CI branches in template_config"
working-directory: "plugin_template"
run: |
python3 ./plugin-template pulp_python --github --latest-release-branch "${NEW_BRANCH}"
git add -A
- name: "Make a PR with version bump and without CHANGES/*"
uses: "peter-evans/create-pull-request@v8"
with:
path: "pulp_python"
token: "${{ secrets.RELEASE_TOKEN }}"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
branch: "minor-version-bump"
base: "main"
title: "Bump minor version"
commit-message: |
Bump minor version
delete-branch: true
- name: "Push release branch"
working-directory: "pulp_python"
run: |
git push origin "${NEW_BRANCH}"
...