Skip to content

ci(suite-native): auto monthly version bump #2

ci(suite-native): auto monthly version bump

ci(suite-native): auto monthly version bump #2

name: "[Bot] suite-native monthly version bump"
on:
schedule:
# Runs on the first day of every month at 00:00 UTC
# - cron: "0 0 1 * *"
- cron: "0 0 * * *"
# Allow manual trigger for testing
workflow_dispatch:
pull_request:
jobs:
update-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Set Version Variables
id: version
run: |
echo "YEAR=$(date +%y)" >> $GITHUB_ENV
echo "MONTH=$(date +%y)" >> $GITHUB_ENV
# echo "MONTH=$(date +%-m)" >> $GITHUB_ENV
echo $YEAR
echo $MONTH
- name: Update Version of package.json
run: jq --indent 4 --arg version "$YEAR.$MONTH.1" '.version = $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:
title: "chore(suite-native): bump version to ${{ env.YEAR }}.${{ env.MONTH }}.1"
body: |
Automated version bump to follow YY.MM.MINOR convention
- Updates version in package.json to ${{ env.YEAR }}.${{ env.MONTH }}.1
branch: "chore/native/bump-version-to-${{ env.YEAR }}.${{ env.MONTH }}.1"
base: "develop" # Change this to your default branch if different
delete-branch: true
labels: mobile ci
draft: true