diff --git a/.github/workflows/health_base.yaml b/.github/workflows/health_base.yaml index 516d6af9..f72e70c5 100644 --- a/.github/workflows/health_base.yaml +++ b/.github/workflows/health_base.yaml @@ -197,7 +197,7 @@ jobs: --experiments ${{ inputs.experiments }} \ --health_yaml_name ${{ inputs.health_yaml_name }} - - run: test -f current_repo/output/comment.md || echo $'The ${{ inputs.check }} workflow has encountered an exception and did not complete.' >> current_repo/output/comment.md + - run: test -f current_repo/output/comment-${{ inputs.check }}.md || echo $'The ${{ inputs.check }} workflow has encountered an exception and did not complete.' >> current_repo/output/comment-${{ inputs.check }}.md if: ${{ '$action_state' == 1 }} - name: Upload coverage to Coveralls @@ -214,4 +214,4 @@ jobs: uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 with: name: comment-${{ inputs.check }} - path: current_repo/output/comment.md + path: current_repo/output/comment-${{ inputs.check }}.md diff --git a/pkgs/firehose/CHANGELOG.md b/pkgs/firehose/CHANGELOG.md index 51949cc6..6ff09896 100644 --- a/pkgs/firehose/CHANGELOG.md +++ b/pkgs/firehose/CHANGELOG.md @@ -2,6 +2,7 @@ - Make the PR health output less verbose by collapsing warnings by default. - Bump dart_apitool to fix errors with equal types being reported as different. +- Give comment files in health work. ## 0.12.0 diff --git a/pkgs/firehose/lib/src/health/health.dart b/pkgs/firehose/lib/src/health/health.dart index 5d442645..a751d018 100644 --- a/pkgs/firehose/lib/src/health/health.dart +++ b/pkgs/firehose/lib/src/health/health.dart @@ -63,7 +63,7 @@ class Health { path.join( directory.path, 'output', - 'comment.md', + 'comment-${check.displayName}.md', ) { flutterExecutable = (Process.runSync('which', ['-a', 'flutter']).stdout as String)