Skip to content

contribute a issue template for package:args #139

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

Merged
merged 1 commit into from
Oct 16, 2024
Merged
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
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/args.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
name: "package:args"
about: "Create a bug or file a feature request against package:args."
labels: "package:args"
---
2 changes: 1 addition & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Configuration for .github/workflows/pull_request_label.yaml.

"package-args":
"package:args":
- changed-files:
- any-glob-to-any-file: 'pkgs/args/**'
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ new file please also add this. The year should be a single number stating the
year the file was created (don't use a range like "2011-2012"). Additionally, if
you edit an existing file, you shouldn't update the year.

// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

Expand All @@ -48,4 +48,4 @@ This project follows
[Google's Open Source Community Guidelines](https://opensource.google/conduct/).

We pledge to maintain an open and welcoming environment. For details, see our
[code of conduct](https://dart.dev/code-of-conduct).
[code of conduct](https://dart.dev/code-of-conduct).
4 changes: 3 additions & 1 deletion pkgs/args/example/arg_parser/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ name: arg_parser_example
version: 1.0.0
description: An example of using ArgParser
publish_to: 'none'

environment:
sdk: '>=2.14.0 <3.0.0'
sdk: ^3.0.0

dependencies:
args:
path: ../..
4 changes: 3 additions & 1 deletion pkgs/args/example/command_runner/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ name: command_runner_example
version: 1.0.0
description: An example of using CommandRunner
publish_to: 'none'

environment:
sdk: '>=2.14.0 <3.0.0'
sdk: ^3.0.0

dependencies:
args:
path: ../..
Loading