From 5560a0567fe07e0d96fd45a00b80e635064d6027 Mon Sep 17 00:00:00 2001 From: Moritz Date: Fri, 11 Oct 2024 19:05:06 +0200 Subject: [PATCH] Fix workflows --- pkgs/args/.github/dependabot.yml => .github/dependabot.yaml | 0 .github/labeler.yaml | 5 +++++ .../test-package.yml => .github/workflows/args.yaml | 0 {pkgs/args/.github => .github}/workflows/publish.yaml | 0 pkgs/args/README.md | 2 +- pkgs/args/pubspec.yaml | 2 +- 6 files changed, 7 insertions(+), 2 deletions(-) rename pkgs/args/.github/dependabot.yml => .github/dependabot.yaml (100%) create mode 100644 .github/labeler.yaml rename pkgs/args/.github/workflows/test-package.yml => .github/workflows/args.yaml (100%) rename {pkgs/args/.github => .github}/workflows/publish.yaml (100%) diff --git a/pkgs/args/.github/dependabot.yml b/.github/dependabot.yaml similarity index 100% rename from pkgs/args/.github/dependabot.yml rename to .github/dependabot.yaml diff --git a/.github/labeler.yaml b/.github/labeler.yaml new file mode 100644 index 00000000..074dd1f4 --- /dev/null +++ b/.github/labeler.yaml @@ -0,0 +1,5 @@ +# Configuration for .github/workflows/pull_request_label.yml. + +"package-args": + - changed-files: + - any-glob-to-any-file: 'pkgs/args/**' diff --git a/pkgs/args/.github/workflows/test-package.yml b/.github/workflows/args.yaml similarity index 100% rename from pkgs/args/.github/workflows/test-package.yml rename to .github/workflows/args.yaml diff --git a/pkgs/args/.github/workflows/publish.yaml b/.github/workflows/publish.yaml similarity index 100% rename from pkgs/args/.github/workflows/publish.yaml rename to .github/workflows/publish.yaml diff --git a/pkgs/args/README.md b/pkgs/args/README.md index c7c9b898..05f36eb7 100644 --- a/pkgs/args/README.md +++ b/pkgs/args/README.md @@ -1,4 +1,4 @@ -[![Dart CI](https://github.com/dart-lang/args/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/args/actions/workflows/test-package.yml) +[![Dart CI](https://github.com/dart-lang/core/actions/workflows/args.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/args.yaml) [![pub package](https://img.shields.io/pub/v/args.svg)](https://pub.dev/packages/args) [![package publisher](https://img.shields.io/pub/publisher/args.svg)](https://pub.dev/packages/args/publisher) diff --git a/pkgs/args/pubspec.yaml b/pkgs/args/pubspec.yaml index 8e59181c..b2453292 100644 --- a/pkgs/args/pubspec.yaml +++ b/pkgs/args/pubspec.yaml @@ -3,7 +3,7 @@ version: 2.6.0-wip description: >- Library for defining parsers for parsing raw command-line arguments into a set of options and values using GNU and POSIX style options. -repository: https://github.com/dart-lang/args +repository: https://github.com/dart-lang/core/main/pkgs/args topics: - cli