Skip to content

Commit

Permalink
ci: report breaking changes
Browse files Browse the repository at this point in the history
use this action on its own pushed commits to report breaking changes in a discussion thread
  • Loading branch information
tmillr committed Dec 27, 2022
1 parent 6a6a01b commit ca74af5
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/report-breaking-changes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Report Breaking Changes

on:
push:
branches:
- 'v[123456789]*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: tmillr/breaking-change@v1
with:
token: ${{ github.token }}
discussionNumber: 43

0 comments on commit ca74af5

Please sign in to comment.