-
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.54 KB
/
versioning.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
46
47
48
49
50
51
52
53
54
55
name: Version Bump and Update
on:
push:
branches:
- main
jobs:
version-bump:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Determine version bump
id: version_bump
run: |
LABELS=$(gh pr view ${{ github.event.pull_request.number }} --json labels --jq '.labels[].name')
if [[ "$LABELS" == *"major"* ]]; then
echo "bump=major" >> $GITHUB_ENV
elif [[ "$LABELS" == *"minor"* ]]; then
echo "bump=minor" >> $GITHUB_ENV
elif [[ "$LABELS" == *"patch"* ]]; then
echo "bump=patch" >> $GITHUB_ENV
else
echo "No version bump label found. Exiting."
exit 0
fi
- name: Bump version
run: |
npx npm --no-git-tag-version --workspaces version ${{ env.bump }}
npx npm version ${{ env.bump }}
- name: Commit changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "chore: bump ${{ env.bump }} version" || echo "No changes to commit"
- name: Push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main