-
-
Notifications
You must be signed in to change notification settings - Fork 273
41 lines (34 loc) · 1.34 KB
/
suite-native-monthly-version-bump.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
name: "[Bot] suite-native monthly version bump"
permissions:
pull-requests: write
on:
schedule:
# Runs on the first day of every month at 00:00 UTC
- cron: "0 0 1 * *"
jobs:
bump_native_version:
if: github.repository == 'trezor/trezor-suite'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Set Version Variable
run: |
YEAR=$(date +%y)
MONTH=$(date +%-m)
echo NEW_VERSION="$YEAR.$MONTH.1" >> $GITHUB_ENV
- name: Update Version of package.json
run: jq --indent 4 --arg version "$NEW_VERSION" '.suiteNativeVersion = $version' suite-native/app/package.json > temp.json && mv temp.json suite-native/app/package.json
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: "chore(suite-native): bump version to ${{ env.NEW_VERSION }}"
title: "chore(suite-native): bump version to ${{ env.NEW_VERSION }}"
body: |
Automated version bump to follow YY.MM.MINOR convention
- Updates version in package.json to ${{ env.NEW_VERSION }}
branch: "chore/native/bump-version-to-${{ env.NEW_VERSION }}"
base: "develop"
delete-branch: true
labels: mobile, ci