mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
name: Update Version
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
run-tests:
|
|
name: "Run tests"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.22"
|
|
check-latest: true
|
|
- name: Run tests
|
|
run: make test
|
|
|
|
check-proto-changes:
|
|
name: "Check Proto Changes"
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
proto_changed: ${{ steps.check_proto.outputs.proto_changed }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Check for changes in proto directory
|
|
id: check_proto
|
|
run: |
|
|
git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -q '^proto/' && \
|
|
echo "proto_changed=true" >> $GITHUB_OUTPUT || \
|
|
echo "proto_changed=false" >> $GITHUB_OUTPUT
|
|
|
|
bump-version:
|
|
needs: [run-tests, check-proto-changes]
|
|
runs-on: ubuntu-latest
|
|
name: "Bump Version"
|
|
if: ${{ !startsWith(github.event.head_commit.message, 'bump:') }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
fetch-depth: 0
|
|
- name: Create bump and changelog
|
|
uses: commitizen-tools/commitizen-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
increment: ${{ needs.check-proto-changes.outputs.proto_changed == 'true' && 'MINOR' || 'PATCH' }}
|