90 lines
3.9 KiB
YAML
90 lines
3.9 KiB
YAML
# This Workflow creates PRs for the release of the latest chectl
|
|
name: Release chectl
|
|
on:
|
|
# manual trigger if required
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'The version that is going to be released. Should be in format 7.y.z'
|
|
required: true
|
|
default: '7.y.z'
|
|
forceflag:
|
|
description: 'To force creation of .x branch, use --force flag here'
|
|
default: ''
|
|
# trigger on commit to main branch of new CSVs, eg., https://github.com/eclipse-che/che-operator/pull/571/files
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'VERSION'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Python 3.6
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.6
|
|
- name: Install yq
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install yq
|
|
- name: Release chectl PRs
|
|
run: |
|
|
hub version
|
|
git config --global user.name "Mykhailo Kuznietsov"
|
|
git config --global user.email "mkuznets@redhat.com"
|
|
export GITHUB_TOKEN=${{ secrets.CHE_INCUBATOR_BOT_GITHUB_TOKEN }}
|
|
set -e
|
|
# if not run manually, need to compute chectl version from latest released CSV
|
|
if [[ "${{ github.event.inputs.version }}" == "" ]] || [[ "${{ github.event.inputs.version }}" == "7.y.z" ]]; then
|
|
chectlVersion=$(yq -r '.spec.version' "deploy/olm-catalog/stable/eclipse-che-preview-openshift/manifests/che-operator.clusterserviceversion.yaml")
|
|
else
|
|
chectlVersion="${{ github.event.inputs.version }}"
|
|
fi
|
|
|
|
# To determine DWO version, we have to replace first 7. with v0.
|
|
# then major DWO version is behind upstream Che version by 26
|
|
# and the minor version is the same
|
|
# e.g 7.27.0 for Che = v0.1.0 for DWO
|
|
chectlMajorMinorVersion=${chectlVersion#7.}
|
|
chectlMajorVersion=${chectlMajorMinorVersion%.*}
|
|
dwoMajorVersion=((${chectlMajorVersion}-26))
|
|
dwoMinorVersion=${chectlMajorMinorVersion%.*}
|
|
dwoVersion=v0.${dwoMajorVersion}.${dwoMinorVersion}
|
|
|
|
# generic method to call a GH action and pass in a single var=val parameter
|
|
invokeAction() {
|
|
this_repo=$1
|
|
this_action_name=$2
|
|
this_workflow_id=$3
|
|
this_var=$4
|
|
this_val=$5
|
|
|
|
# can compute using GH API
|
|
# workflow_id=$(curl -sSL https://api.github.com/repos/${this_repo}/actions/workflows -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github.v3+json" | jq --arg search_field "${this_action_name}" '.workflows[] | select(.name == $search_field).id'); # echo "workflow_id = $workflow_id"
|
|
# or just pass it in
|
|
workflow_id=$this_workflow_id
|
|
|
|
inputsJson="{}"
|
|
|
|
IFS=',' read -ra paramMap <<< "${this_params}"
|
|
for keyvalue in "${paramMap[@]}"
|
|
do
|
|
key=${keyvalue%=*}
|
|
value=${keyvalue#*=}
|
|
echo $var1
|
|
inputsJson=$(echo "${inputsJson}" | jq ". + {\"${key}\": \"${value}\"}")
|
|
done
|
|
|
|
curl -sSL https://api.github.com/repos/${this_repo}/actions/workflows/${workflow_id}/dispatches -X POST -H "Authorization: token ${this_github_token}" -H "Accept: application/vnd.github.v3+json" -d "{\"ref\":\"${workflow_ref}\",\"inputs\": ${inputsJson} }"
|
|
echo "[INFO] Invoked '${this_action_name}' action ($workflow_id) - see https://github.com/${this_repo}/actions?query=workflow%3A%22${this_action_name// /+}%22"
|
|
}
|
|
|
|
# invoke action from chectl repo
|
|
invokeAction che-incubator/chectl "Release - create pull request for upcoming release" "4267607" "version=${chectlVersion},dwoVersion=${dwoVersion}"
|