generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): add a workflow to bump the runner version
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Bump the runner version | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "Runner version" | ||
required: true | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
bump: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Bump | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
# Check that the version is a valid semver | ||
if ! echo "${{ github.event.inputs.version }}" | grep -E '^[0-9]+\.[0-9]+\.[0-9]+$'; then | ||
echo "Invalid version" | ||
exit 1 | ||
fi | ||
# Check that this release exists in the CodSpeedHQ/runner repository | ||
if ! gh release view ${{ github.event.inputs.version }} -R CodSpeedHQ/runner; then | ||
echo "Release ${{ github.event.inputs.version }} does not exist in CodSpeedHQ/runner" | ||
exit 1 | ||
fi | ||
git config --global user.email "github-actions[bot]@users.noreply.github.com" | ||
git config --global user.name "github-actions[bot]" | ||
echo "Bumping runner version to ${{ github.event.inputs.version }}" | ||
BRANCH_NAME=bump-runner-version/${{ github.event.inputs.version }} | ||
git checkout -b $BRANCH_NAME | ||
echo ${{ github.event.inputs.version }} > .codspeed-runner-version | ||
git add .codspeed-runner-version | ||
git commit -m "Bump runner version to ${{ github.event.inputs.version }}" | ||
git push origin $BRANCH_NAME | ||
gh pr create --title "Bump runner version to ${{ github.event.inputs.version }}" --body "Bump runner version to ${{ github.event.inputs.version }}" --base main --head $BRANCH_NAME |