Skip to content

Commit aebb65c

Browse files
authored
Update publish.yaml (#789)
* Update publish.yaml * cargo cult config from dart-lang/core * skip coverage check; update file headers
1 parent a6b9485 commit aebb65c

File tree

5 files changed

+20
-10
lines changed

5 files changed

+20
-10
lines changed

.github/workflows/health.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: Health
2+
23
on:
34
pull_request:
45
branches: [ master ]
56
types: [opened, synchronize, reopened, labeled, unlabeled]
7+
68
jobs:
79
health:
810
uses: dart-lang/ecosystem/.github/workflows/health.yaml@main
911
with:
10-
checks: "changelog,do-not-submit,breaking,coverage,leaking"
11-
ignore_coverage: "example/**,interop/**"
12+
checks: "changelog,do-not-submit,breaking,leaking"
1213
permissions:
1314
pull-requests: write

.github/workflows/post_summaries.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Comment on the pull request
22

33
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.
4+
# Trigger this workflow after the given workflows completes.
5+
# This workflow will have permissions to do things like create comments on the
6+
# PR, even if the original workflow couldn't.
67
workflow_run:
78
workflows:
89
- Health
@@ -14,4 +15,4 @@ jobs:
1415
upload:
1516
uses: dart-lang/ecosystem/.github/workflows/post_summaries.yaml@main
1617
permissions:
17-
pull-requests: write
18+
pull-requests: write

.github/workflows/publish.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1+
# A CI configuration to auto-publish pub packages.
2+
13
name: Publish
2-
permissions:
3-
id-token: write
4-
pull-requests: write
4+
55
on:
66
pull_request:
77
branches: [ master ]
88
push:
99
tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ]
10+
1011
jobs:
1112
publish:
1213
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
14+
with:
15+
write-comments: false
16+
permissions:
17+
id-token: write
18+
pull-requests: write

lib/src/client/query_parameter.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright 2018 Google Inc. All Rights Reserved.
1+
// Copyright (c) 2018, the gRPC project authors. Please see the AUTHORS file
2+
// for details. All rights reserved.
23
//
34
// Licensed under the Apache License, Version 2.0 (the "License");
45
// you may not use this file except in compliance with the License.

lib/src/client/transport/cors.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// Copyright 2018 Google Inc. All Rights Reserved.
1+
// Copyright (c) 2018, the gRPC project authors. Please see the AUTHORS file
2+
// for details. All rights reserved.
23
//
34
// Licensed under the Apache License, Version 2.0 (the "License");
45
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)