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 97b00cf
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/rc-breaking-changes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Breaking Changes Check

on:
push:
branches:
- main

jobs:
breaking-changes:
name: Check for Breaking Changes
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go 1.22.6
uses: actions/setup-go@v4
with:
go-version: '1.22.6'

- name: Run Breaking Changes Script
run: |
chmod +x ./scripts/breaking-changes.sh
./scripts/breaking-changes.sh

0 comments on commit 97b00cf

Please sign in to comment.