Skip to content

Commit

Permalink
add health checks for breaking changes, changelogs, pubspecs, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Sep 9, 2024
1 parent 36ad9ab commit 7171cad
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/health.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Health
on:
pull_request:
branches: [ main, master ]
types: [opened, synchronize, reopened, labeled, unlabeled]
jobs:
health:
uses: dart-lang/ecosystem/.github/workflows/health.yaml@main
with:
use-flutter: true
checks: "version,changelog,license,breaking,do-not-submit,leaking"
permissions:
pull-requests: write
16 changes: 16 additions & 0 deletions .github/workflows/post_summaries.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Comment on the pull request

on:
# Trigger this workflow after the Health workflow completes. This workflow will have permissions to
# do things like create comments on the PR, even if the original workflow couldn't.
workflow_run:
workflows:
- Health
types:
- completed

jobs:
upload:
uses: dart-lang/ecosystem/.github/workflows/post_summaries.yaml@main
permissions:
pull-requests: write

0 comments on commit 7171cad

Please sign in to comment.