From b46f423b705687152320f0940613725ba6d89948 Mon Sep 17 00:00:00 2001 From: James Aprosail Date: Fri, 10 May 2024 11:28:22 +0800 Subject: [PATCH 1/3] github works review --- .github/workflows/review.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/review.yaml diff --git a/.github/workflows/review.yaml b/.github/workflows/review.yaml new file mode 100644 index 0000000..005dfcb --- /dev/null +++ b/.github/workflows/review.yaml @@ -0,0 +1,8 @@ +name: review + +on: + push: {branches: ["main", "dev"]} + pull_request: {branches: ["main", "dev"]} + +jobs: + review: {uses: aprosail/templates/.github/workflows/dart-review.yaml@main} From 7891ffa7ebc1e06dd3f63fd5d035df9cb2ca071a Mon Sep 17 00:00:00 2001 From: James Aprosail Date: Fri, 10 May 2024 11:28:28 +0800 Subject: [PATCH 2/3] github works publish --- .github/workflows/publish.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..cf497a2 --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,10 @@ +name: publish + +on: + push: + tags: ["v[0-9]+.[0-9]+.[0-9]+*"] + +jobs: + publish: + permissions: {id-token: write} + uses: aprosail/templates/.github/workflows/dart-publish.yaml@main From 93731113d3bfbc304e6ac0db8e2f00635a3d95d2 Mon Sep 17 00:00:00 2001 From: James Aprosail Date: Fri, 10 May 2024 11:30:12 +0800 Subject: [PATCH 3/3] format tidy readme --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ea7111d..e032a63 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,7 @@ Terminal colorization and text style decoration for Dart: This package is an encapsulation of the terminal escape code, -refer to the standard: ANSI X3.64, ECMA-48, or ISO 6429. - +refer to the standard: `ANSI X3.64`, `ECMA-48`, or `ISO 6429`. Thanks to Dart's extension mechanism, you can use it like this: ```dart