Skip to content

Commit

Permalink
try scan main branch for breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
skudasov committed Sep 18, 2024
1 parent f2d805e commit 2e986d0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rc-breaking-changes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Main branch breaking changes check

on:
push:

jobs:
breaking-changes:
name: Check "main" for breaking changes before release
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Go 1.22.6
uses: actions/setup-go@v4
with:
go-version: '1.22.6'
- name: Install gorelease tool
run: |
go install golang.org/x/exp/cmd/gorelease@latest
- name: Run Breaking Changes Script
run: |
chmod +x ./scripts/breaking-changes.sh
./scripts/breaking-changes.sh

0 comments on commit 2e986d0

Please sign in to comment.