Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pr #923

Closed
wants to merge 8 commits into from
Closed

Pr #923

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/test_repos/repos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "../../pkgs/quest/schema.json",
"https://github.com/mosuem/my_app_old_web": {
"level": "analyze"
},
"https://github.com/mosuem/my_app_new_web": {
"level": "test",
"packages": {
"exclude": "intl4x"
}
}
}
12 changes: 12 additions & 0 deletions .github/workflows/ecosystem_test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Ecosystem test

on:
pull_request:
branches: [ main ]
types: [opened, synchronize, reopened, labeled, unlabeled]

jobs:
test_ecosystem:
uses: mosuem/ecosystem/.github/workflows/ecosystem_test.yaml@main
with:
repos_file: .github/test_repos/repos.json
29 changes: 29 additions & 0 deletions .github/workflows/nudge-reviewer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# A workflow to close issues where the author hasn't responded to a request for
# more information; see https://github.com/actions/stale.

name: No Response

# Run as a daily cron.
on:
schedule:
# Every day at 8am
- cron: '0 8 * * *'

# All permissions not specified are set to 'none'.
permissions:
issues: write
pull-requests: write

jobs:
no-response:
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'dart-lang' }}
steps:
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e
with:
days-before-pr-stale: 7
days-before-issue-stale: -1
days-before-close: -1
stale-issue-label: "needs-info"
stale-pr-message: "Hi @${{ github.event.pull_request.pull_request.requested_reviewers }}."
stale-pr-label: "needs-info"
3 changes: 2 additions & 1 deletion .github/workflows/post_summaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ on:
workflows:
- Health
- Publish
- Ecosystem test
types:
- completed

jobs:
upload:
uses: dart-lang/ecosystem/.github/workflows/post_summaries.yaml@main
uses: mosuem/ecosystem/.github/workflows/post_summaries.yaml@main
permissions:
pull-requests: write
2 changes: 1 addition & 1 deletion pkgs/intl/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: intl
version: 0.20.1
version: 0.20.2
description: >-
Contains code to deal with internationalized/localized messages, date and
number formatting and parsing, bi-directional text, and other
Expand Down
Loading