Skip to content

Commit ada5eb0

Browse files
authored
Merge branch 'main' into merge-async-package
2 parents f5fbcdd + 5876246 commit ada5eb0

File tree

5 files changed

+37
-3
lines changed

5 files changed

+37
-3
lines changed

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuration for .github/workflows/pull_request_label.yml.
1+
# Configuration for .github/workflows/pull_request_label.yaml.
22

33
"package-args":
44
- changed-files:

.github/workflows/args.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
sdk: [dev]
3333
steps:
34-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
34+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
3535
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
3636
with:
3737
sdk: ${{ matrix.sdk }}
@@ -57,7 +57,7 @@ jobs:
5757
os: [ubuntu-latest]
5858
sdk: ['3.3', dev]
5959
steps:
60-
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
60+
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
6161
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
6262
with:
6363
sdk: ${{ matrix.sdk }}

.github/workflows/health.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Health
2+
on:
3+
pull_request:
4+
branches: [ main ]
5+
types: [opened, synchronize, reopened, labeled, unlabeled]
6+
7+
jobs:
8+
health:
9+
uses: dart-lang/ecosystem/.github/workflows/health.yaml@main
10+
with:
11+
ignore_coverage: "**.mock.dart,**.g.dart"
12+
ignore_license: "**.mock.dart,**.g.dart,**.mocks.dart"
13+
permissions:
14+
pull-requests: write
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Comment on the pull request
2+
3+
on:
4+
# Trigger this workflow after the Health workflow completes. This workflow will have permissions to
5+
# do things like create comments on the PR, even if the original workflow couldn't.
6+
workflow_run:
7+
workflows:
8+
- Publish
9+
- Health
10+
types:
11+
- completed
12+
13+
jobs:
14+
upload:
15+
uses: dart-lang/ecosystem/.github/workflows/post_summaries.yaml@main
16+
permissions:
17+
pull-requests: write

.github/workflows/publish.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ jobs:
1212
publish:
1313
if: ${{ github.repository_owner == 'dart-lang' }}
1414
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
15+
with:
16+
write-comments: false
17+

0 commit comments

Comments
 (0)