Moving fixes
diff --git a/.github/labeler.yml b/.github/labeler.yml index 1cc4b20..f69c1bc 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml
@@ -111,3 +111,7 @@ 'package:unified_analytics': - changed-files: - any-glob-to-any-file: 'pkgs/unified_analytics/**' + +'package:watcher': + - changed-files: + - any-glob-to-any-file: 'pkgs/watcher/**'
diff --git a/pkgs/watcher/.github/workflows/test-package.yml b/.github/workflows/watcher.yaml similarity index 84% rename from pkgs/watcher/.github/workflows/test-package.yml rename to .github/workflows/watcher.yaml index b501c98..a04483c 100644 --- a/pkgs/watcher/.github/workflows/test-package.yml +++ b/.github/workflows/watcher.yaml
@@ -1,17 +1,28 @@ -name: Dart CI +name: package:watcher on: # Run on PRs and pushes to the default branch. push: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/watcher.yaml' + - 'pkgs/watcher/**' pull_request: - branches: [ master ] + branches: [ main ] + paths: + - '.github/workflows/watcher.yaml' + - 'pkgs/watcher/**' schedule: - cron: "0 0 * * 0" env: PUB_ENVIRONMENT: bot.github + +defaults: + run: + working-directory: pkgs/watcher/ + jobs: # Check code formatting and static analysis on a single OS (linux) # against Dart dev.
diff --git a/README.md b/README.md index 79d1dde..11ff129 100644 --- a/README.md +++ b/README.md
@@ -41,6 +41,7 @@ | [source_span](pkgs/source_span/) | Provides a standard representation for source code locations and spans. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asource_span) | [](https://pub.dev/packages/source_span) | | [sse](pkgs/sse/) | Provides client and server functionality for setting up bi-directional communication through Server Sent Events (SSE) and corresponding POST requests. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Asse) | [](https://pub.dev/packages/sse) | | [unified_analytics](pkgs/unified_analytics/) | A package for logging analytics for all Dart and Flutter related tooling to Google Analytics. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aunified_analytics) | [](https://pub.dev/packages/unified_analytics) | +| [watcher](pkgs/watcher/) | Monitor directories and send notifications when the contents change. | [](https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Awatcher) | [](https://pub.dev/packages/watcher) | ## Publishing automation
diff --git a/pkgs/watcher/.github/dependabot.yaml b/pkgs/watcher/.github/dependabot.yaml deleted file mode 100644 index bf6b38a..0000000 --- a/pkgs/watcher/.github/dependabot.yaml +++ /dev/null
@@ -1,14 +0,0 @@ -# Dependabot configuration file. -version: 2 - -updates: - - package-ecosystem: github-actions - directory: / - schedule: - interval: monthly - labels: - - autosubmit - groups: - github-actions: - patterns: - - "*"
diff --git a/pkgs/watcher/.github/workflows/no-response.yml b/pkgs/watcher/.github/workflows/no-response.yml deleted file mode 100644 index ab1ac49..0000000 --- a/pkgs/watcher/.github/workflows/no-response.yml +++ /dev/null
@@ -1,37 +0,0 @@ -# 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: - # Don't automatically mark inactive issues+PRs as stale. - days-before-stale: -1 - # Close needs-info issues and PRs after 14 days of inactivity. - days-before-close: 14 - stale-issue-label: "needs-info" - close-issue-message: > - Without additional information we're not able to resolve this issue. - Feel free to add more info or respond to any questions above and we - can reopen the case. Thanks for your contribution! - stale-pr-label: "needs-info" - close-pr-message: > - Without additional information we're not able to resolve this PR. - Feel free to add more info or respond to any questions above. - Thanks for your contribution!
diff --git a/pkgs/watcher/.github/workflows/publish.yaml b/pkgs/watcher/.github/workflows/publish.yaml deleted file mode 100644 index 2239b63..0000000 --- a/pkgs/watcher/.github/workflows/publish.yaml +++ /dev/null
@@ -1,14 +0,0 @@ -# A CI configuration to auto-publish pub packages. - -name: Publish - -on: - pull_request: - branches: [ master ] - push: - tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ] - -jobs: - publish: - if: ${{ github.repository_owner == 'dart-lang' }} - uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
diff --git a/pkgs/watcher/CHANGELOG.md b/pkgs/watcher/CHANGELOG.md index 8f4d289..ef3a7e2 100644 --- a/pkgs/watcher/CHANGELOG.md +++ b/pkgs/watcher/CHANGELOG.md
@@ -1,7 +1,8 @@ -## 1.1.1-wip +## 1.1.1 - Ensure `PollingFileWatcher.ready` completes for files that do not exist. - Require Dart SDK `^3.1.0` +- Move to `dart-lang/tools` monorepo. ## 1.1.0
diff --git a/pkgs/watcher/README.md b/pkgs/watcher/README.md index 677ca35..83a0324 100644 --- a/pkgs/watcher/README.md +++ b/pkgs/watcher/README.md
@@ -1,4 +1,4 @@ -[](https://github.com/dart-lang/watcher/actions/workflows/test-package.yml) +[](https://github.com/dart-lang/tools/actions/workflows/watcher.yaml) [](https://pub.dev/packages/watcher) [](https://pub.dev/packages/watcher/publisher)
diff --git a/pkgs/watcher/pubspec.yaml b/pkgs/watcher/pubspec.yaml index f96a74a..7781bd4 100644 --- a/pkgs/watcher/pubspec.yaml +++ b/pkgs/watcher/pubspec.yaml
@@ -1,5 +1,5 @@ name: watcher -version: 1.1.1-wip +version: 1.1.1 description: >- A file system watcher. It monitors changes to contents of directories and sends notifications when files have been added, removed, or modified.