-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (42 loc) · 1.41 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
47
48
name: Misc - Command - Bump up version
on:
issue_comment:
types: [created, edited]
jobs:
misc-command-bump-version:
runs-on: ubuntu-latest
if: >
contains( github.event.comment.html_url, '/pull/' )
&& startsWith( github.event.comment.body, '/bump-version ' )
&& github.head_ref == 'next-version'
steps:
- name: Set up range to 'patch'
if: github.event.comment.body == '/bump-version patch'
run: echo "UP_RANGE=patch" >> $GITHUB_ENV
- name: Set up range to 'minor'
if: github.event.comment.body == '/bump-version minor'
run: echo "UP_RANGE=minor" >> $GITHUB_ENV
- name: Set up range to 'major'
if: github.event.comment.body == '/bump-version major'
run: echo "UP_RANGE=major" >> $GITHUB_ENV
- name: Check up range
if: >
! contains(fromJSON('["patch", "minor", "major"]'), env.UP_RANGE)
run: echo 'invalid up range'; exit 1
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v4
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:${UP_RANGE}"
git commit -am 'Bump up version'
git push
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}