-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 1.34 KB
/
misc-command-bump_version.yaml
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
name: Misc - Command - Bump up version
on:
issue_comment:
types: [created, edited]
jobs:
bump-version:
runs-on: ubuntu-latest
if: >
contains( github.event.comment.html_url, '/pull/' )
&& startsWith( github.event.comment.body, '/bump-version ' )
steps:
- name: Get metadata
id: meta
run: |
# Get up range from comment (one of ["patch","minor","major"])
UP_RANGE=$(echo ${{ github.event.comment.body }} | sed -e 's/\/bump-version [[:space:]]*\(.*\)/\1/')
bash -c "[[ ${UP_RANGE} =~ (patch|minor|major) ]]"
echo "::set-output name=up_range::${UP_RANGE}"
# Get ref branch
echo "::set-output name=branch_name::$(curl -H \"Authorization: token ${GITHUB_TOKEN}\" ${{ github.event.issue.pull_request.url }} | jq -r '.head.ref')"
- uses: actions/checkout@v3
with:
ref: ${{ steps.meta.outputs.branch_name }}
- uses: actions/setup-node@v3
with:
node-version: "16.14.2"
cache: "yarn"
- run: yarn install
- name: Bump up version
run: |
git config user.name github-actions
git config user.email [email protected]
yarn run "bump-version:${{ steps.meta.outputs.up_range }}"
git commit -am 'Bump up version'
git push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}