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

Add workflow to automatically create new node release #485

Merged
merged 20 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from 13 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
26 changes: 26 additions & 0 deletions .github/api/createCommitOnBranch.gql
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
mutation (
$githubRepository: String!,
$branchName: String!,
$expectedHeadOid: GitObjectID!
$commitMessage: String!
$files: [FileAddition!]!
) {
createCommitOnBranch(
input: {
branch:
{
repositoryNameWithOwner: $githubRepository,
branchName: $branchName
},
message: {headline: $commitMessage},
fileChanges: {
additions: $files
}
expectedHeadOid: $expectedHeadOid
}
){
commit {
url
}
}
}
12 changes: 12 additions & 0 deletions .github/scripts/specific_version_up.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash
set -e

# define the version number we want to set
newVersion=$1

# Find all Cargo.toml files in the current directory and its subdirectories
for file in $(find . -name "Cargo.toml")
do
# Use awk to change the version number of the package
awk -v newVersion="$newVersion" -F'=' '/\[package\]/,/version =/ { if($0 ~ /version =/ && $0 !~ /#/) {print $1 "= ""\""newVersion"\""; next} }1' $file > temp && mv temp $file
done
31 changes: 31 additions & 0 deletions .github/workflows/release-node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This action triggers a GitLab CI job that generates the release notes
name: Node Release

on:
pull_request:
types:
- closed
branches:
- 'main'

jobs:
release_check:
# This job will only run if:
# * the pull request is closed and merged to main branch;
# * the pull request has the "release:" and "node" in its title
if: ${{ github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'release node:') }}
name: Need new release
strategy:
fail-fast: true
runs-on: ubuntu-latest

steps:
- name: trigger gitlab
uses: eic/trigger-gitlab-ci@v3
with:
url: https://gitlab.com
project_id:
token: ${{ secrets.GITLABAPI }}
ref_name: main
variables: |
version= ${{ github.event.pull_request.body }}
174 changes: 174 additions & 0 deletions .github/workflows/version-up.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,174 @@
name: Version Up

on:
workflow_dispatch:
inputs:
versioning:
type: choice
description: "choose versioning:"
options:
- major
- minor
- patch
- release
- rc
- beta
- alpha
specific_version:
type: string
description: "specific version to bump to"
packages-all:
description: "Check if you want ALL packages to be updated. Else, only pendulum-node"
required: false
type: boolean
default: true

jobs:
bump-version:
runs-on: ubuntu-latest
name: bump version
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup User
run: |
git config user.name github-actions
git config user.email [email protected]

- name: install cargo-edit
run: |
cargo install cargo-edit

- name: Check For Specific Version
if: github.event.inputs.specific_version != ''
run: |
bash .github/scripts/specific_version_up ${{ github.event.inputs.specific_version }}
if ${{ github.event.inputs.packages-all }} == 'true'; then
echo "Upgrading crates to ${{ github.event.inputs.specific_version }}" &> changes.txt
else
echo "Upgrading node to ${{ github.event.inputs.specific_version }}" &> changes.txt
fi

- name: ${{ github.event.inputs.versioning }} Version Up for all
if: github.event.inputs.specific_version == '' && github.event.inputs.packages-all == 'true'
continue-on-error: false
run: |
cargo set-version --bump ${{ github.event.inputs.versioning }} &> changes.txt
cat changes.txt

- name: ${{ github.event.inputs.versioning }} Version Up for node
if: github.event.inputs.specific_version == '' && github.event.inputs.packages-all == 'false'
continue-on-error: false
run: |
cargo set-version --bump ${{ github.event.inputs.versioning }} --package pendulum-node &> changes.txt
cat changes.txt

- name: "Read file contents"
id: read_file
uses: juliangruber/read-file-action@v1
with:
path: ./changes.txt

- name: Set Chosen Package
id: set-pkg
run: |
if [ ${{ github.event.inputs.packages-all }} == 'true' ]; then
echo "name=all" >> "$GITHUB_OUTPUT"
else
echo "name=node" >> "$GITHUB_OUTPUT"
fi

- name: Put current date into a variable
id: date-now
uses: Kaven-Universe/github-action-current-date-time@v1
with:
format: "yyyy-MM-dd"

- name: Create Release Branch
id: new-branch
run: |
name=${{ steps.set-pkg.outputs.name }}
now="${{ steps.date-now.outputs.day }}-${{ steps.date-now.outputs.month }}-${{ steps.date-now.outputs.year }}"

if [ '${{ github.event.inputs.specific_version }}' != '' ]; then
echo "specific version: ${{ github.event.inputs.specific_version }}"
branch_name="release/version-up-to-${{ github.event.inputs.specific_version }}-$name-$now"
else
vers=${{ github.event.inputs.versioning }}
echo "versioning: ${{ github.event.inputs.versioning }}"
branch_name="release/$vers-version-up-$name-$now"
fi

echo "name=${branch_name}" >> "$GITHUB_OUTPUT"

git checkout -b ${branch_name}
git push --set-upstream origin ${branch_name}

# todo: make this simpler.
- name: Commit New Changes to New Branch (all)
if: github.event.inputs.packages-all == 'true'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: ${{ steps.new-branch.outputs.name }}
run: |
gh api graphql \
-F githubRepository=${{ github.repository }} \
-F branchName=${{ env.BRANCH }} \
-F expectedHeadOid=$(git rev-parse HEAD) \
-F commitMessage="$(cat changes.txt)" \
-F files[][path]="chain-extensions/common/Cargo.toml" -F files[][contents]=$(base64 -w0 chain-extensions/common/Cargo.toml) \
-F files[][path]="chain-extensions/price/Cargo.toml" -F files[][contents]=$(base64 -w0 chain-extensions/price/Cargo.toml) \
-F files[][path]="chain-extensions/token/Cargo.toml" -F files[][contents]=$(base64 -w0 chain-extensions/token/Cargo.toml) \
-F files[][path]="node/Cargo.toml" -F files[][contents]=$(base64 -w0 node/Cargo.toml) \
-F files[][path]="pallets/orml-currencies-allowance-extension/Cargo.toml" -F files[][contents]=$(base64 -w0 pallets/orml-currencies-allowance-extension/Cargo.toml) \
-F files[][path]="pallets/orml-tokens-management-extension/Cargo.toml" -F files[][contents]=$(base64 -w0 pallets/orml-tokens-management-extension/Cargo.toml) \
-F files[][path]="pallets/parachain-staking/Cargo.toml" -F files[][contents]=$(base64 -w0 pallets/parachain-staking/Cargo.toml) \
-F files[][path]="pallets/parachain-staking/rpc/Cargo.toml" -F files[][contents]=$(base64 -w0 pallets/parachain-staking/rpc/Cargo.toml) \
-F files[][path]="pallets/parachain-staking/rpc/runtime-api/Cargo.toml" -F files[][contents]=$(base64 -w0 pallets/parachain-staking/rpc/runtime-api/Cargo.toml) \
-F files[][path]="pallets/treasury-buyout-extension/Cargo.toml" -F files[][contents]=$(base64 -w0 pallets/treasury-buyout-extension/Cargo.toml) \
-F files[][path]="pallets/vesting-manager/Cargo.toml" -F files[][contents]=$(base64 -w0 pallets/vesting-manager/Cargo.toml) \
-F files[][path]="runtime/amplitude/Cargo.toml" -F files[][contents]=$(base64 -w0 runtime/amplitude/Cargo.toml) \
-F files[][path]="runtime/common/Cargo.toml" -F files[][contents]=$(base64 -w0 runtime/common/Cargo.toml) \
-F files[][path]="runtime/foucoco/Cargo.toml" -F files[][contents]=$(base64 -w0 runtime/foucoco/Cargo.toml) \
-F files[][path]="runtime/integration-tests/Cargo.toml" -F files[][contents]=$(base64 -w0 runtime/integration-tests/Cargo.toml) \
-F files[][path]="runtime/pendulum/Cargo.toml" -F files[][contents]=$(base64 -w0 runtime/pendulum/Cargo.toml) \
-F '[email protected]/api/createCommitOnBranch.gql'

- name: Commit New Changes to New Branch (node)
if: github.event.inputs.packages-all == 'false'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: ${{ steps.new-branch.outputs.name }}
run: |
gh api graphql \
-F githubRepository=${{ github.repository }} \
-F branchName=${{ env.BRANCH }} \
-F expectedHeadOid=$(git rev-parse HEAD) \
-F commitMessage="$(cat changes.txt)" \
-F files[][path]="node/Cargo.toml" -F files[][contents]=$(base64 -w0 node/Cargo.toml) \
-F '[email protected]/api/createCommitOnBranch.gql'

- name: Create Pull Request for Specific Version
if: github.event.inputs.specific_version != ''
uses: thomaseizinger/create-pull-request@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
title: "release: Force version up ${{ steps.set-pkg.outputs.name }}"
ebma marked this conversation as resolved.
Show resolved Hide resolved
body: "${{ steps.read_file.outputs.content }}"
head: ${{ steps.new-branch.outputs.name }}
base: main
reviewers: "pendulum-chain/devs"

- name: Create Pull Request
if: github.event.inputs.specific_version == ''
uses: thomaseizinger/create-pull-request@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
title: "release: ${{ github.event.inputs.versioning }} version up ${{ steps.set-pkg.outputs.name }}"
ebma marked this conversation as resolved.
Show resolved Hide resolved
body: "${{ steps.read_file.outputs.content }}"
head: ${{ steps.new-branch.outputs.name }}
base: main
reviewers: "pendulum-chain/devs"
30 changes: 30 additions & 0 deletions script/get_commit.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/bash
set -e

versionNumber=$1

tagNamePrefix="node-release"
## get the latest tag of this node
lastVersionName=$(git describe --abbrev=0 --tags --always `git rev-list --tags` | grep -i "$tagNamePrefix" -m 1)

## get the commits since the last tag
latestCommitOfLastVersion=$(git log $lastVersionName --oneline --max-count=1 | cut -c1-7)


logs=( $(git log $latestCommitOfLastVersion..origin/main --oneline -- node/ | cut -c1-7) )
if (( ${#logs[@]} == 0 )); then
echo "Error: Repo is up to date. No new release required".
exit 1
fi

echo -e "## What's Changed\n" >> Commits.txt
## output the relevant commits, and save to file
echo "relevant commits:"
for commit in "${logs[@]}"; do
link="$(git log --format="[%h](https://github.com/pendulum-chain/pendulum/commit/%h) %s" -n 1 $commit)"
echo $link
echo -e "* "$link"\n" >> Commits.txt
done

$newVersionName
echo "new version: "$tagNamePrefix"-"$versionNumber
Loading