generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 4
45 lines (41 loc) · 1.69 KB
/
bump-runner-version.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
name: Bump the runner version
on:
workflow_dispatch:
inputs:
version:
description: "Runner version"
required: true
permissions:
contents: write
pull-requests: write
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- 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 v${{ 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 "chore: bump runner version to ${{ github.event.inputs.version }}"
git push origin $BRANCH_NAME
gh pr create --title "chore: bump runner version to ${{ github.event.inputs.version }}" --body "Bump runner version to ${{ github.event.inputs.version }}" --base main --head $BRANCH_NAME