-
Notifications
You must be signed in to change notification settings - Fork 1.6k
102 lines (89 loc) · 4.26 KB
/
release-1-create-pr.yml
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
name: "Release-1: Create PR for master"
env:
GIT_USERNAME: "DefectDojo release bot"
GIT_EMAIL: "dojo-release-bot@users.noreply.github.com"
on:
workflow_dispatch:
inputs:
# the actual branch that can be chosen on the UI is made irrelevant by further steps
# because someone will forget one day to change it.
from_branch:
description: "Select branch to release from ('release/x.y.z'. If `dev` is entered, a new release branch will be created from `dev`)"
required: true
release_number:
description: "Release version (x.y.z format)"
required: true
jobs:
create_pr:
runs-on: ubuntu-latest
steps:
- name: Checkout from_branch branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.from_branch }}
- name: Create release branch
if: ${{ !startsWith(github.event.inputs.from_branch, 'release/') }}
run: |
echo "NEW_BRANCH=release/${{ github.event.inputs.release_number }}" >> $GITHUB_ENV
- name: Use existing release branch
if: startsWith(github.event.inputs.from_branch, 'release/')
run: |
echo "NEW_BRANCH=${{ github.event.inputs.from_branch }}" >> $GITHUB_ENV
- name: Configure git
run: |
git config --global user.name "${{ env.GIT_USERNAME }}"
git config --global user.email "${{ env.GIT_EMAIL }}"
- name: Push branch
if: "!startsWith('${{ github.event.inputs.from_branch }}', 'release/')"
run: git push origin HEAD:${NEW_BRANCH}
- name: Checkout release branch
uses: actions/checkout@v4
with:
ref: ${{ env.NEW_BRANCH }}
- name: Update version numbers in key files
run: |
sed -ri "s/__version__ = '.*'/__version__ = '${{ github.event.inputs.release_number }}'/" dojo/__init__.py
sed -ri "s/\"version\": \".*\"/\"version\": \"${{ github.event.inputs.release_number }}\"/" components/package.json
sed -ri "s/appVersion: \".*\"/appVersion: \"${{ github.event.inputs.release_number }}\"/" helm/defectdojo/Chart.yaml
if grep "\-dev" helm/defectdojo/Chart.yaml; then
echo "x.y.z-dev found in Chart.yaml, probably releasing a new minor version"
echo "removing the -dev suffix"
sed -e "s/\-dev//" -i helm/defectdojo/Chart.yaml
else
echo "x.y.z without -dev found in Chart.yaml, probably releasing a new bug fix version"
CURRENT_CHART_VERSION=$(grep -oP 'version: (\K\S*)?' helm/defectdojo/Chart.yaml | head -1)
NEW_CHART_VERSION=$(echo "version: $CURRENT_CHART_VERSION" | awk -F. -v OFS=. 'NF==1{print ++$NF}; NF>1{$NF=sprintf("%0*d", length($NF), ($NF+1)); print}')
echo "bumping the chart version from $CURRENT_CHART_VERSION to $NEW_CHART_VERSION"
sed -ri "0,/version/s/version: \S+/$NEW_CHART_VERSION/" helm/defectdojo/Chart.yaml
fi
- name: Check version numbers
run: |
grep -H version dojo/__init__.py
grep -H version components/package.json
grep -H appVersion helm/defectdojo/Chart.yaml
grep -H version helm/defectdojo/Chart.yaml
- name: Push version changes
uses: stefanzweifel/git-auto-commit-action@v5.0.1
with:
commit_user_name: "${{ env.GIT_USERNAME }}"
commit_user_email: "${{ env.GIT_EMAIL }}"
commit_author: "${{ env.GIT_USERNAME }} <${{ env.GIT_EMAIL }}>"
commit_message: "Update versions in application files"
branch: ${{ env.NEW_BRANCH }}
- id: set-repo-org
run: echo "repoorg=${GITHUB_REPOSITORY%%/*}" >> $GITHUB_ENV
- name: Create Pull Request
env:
REPO_ORG: ${{ env.repoorg }}
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.pulls.create({
owner: '${{ env.REPO_ORG }}',
repo: 'django-DefectDojo',
title: 'Release: Merge release into master from: ${{ env.NEW_BRANCH }}',
body: `Release triggered by \`${ process.env.GITHUB_ACTOR }\``,
head: '${{ env.NEW_BRANCH }}',
base: 'master'
})