This repository was archived by the owner on Jun 16, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ testExecutionTime:
88 if : true
99diff :
1010 datastores :
11- - artifact://${GITHUB_REPOSITORY}/default
11+ - artifact://${GITHUB_REPOSITORY}
1212comment :
1313 if : is_pull_request
1414summary :
1515 if : true
1616report :
1717 if : is_default_branch
1818 datastores :
19- - artifact://${GITHUB_REPOSITORY}/default
19+ - artifact://${GITHUB_REPOSITORY}
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## [ v0.1.0] ( https://github.com/tailor-platform/patterner/commits/v0.1.0 ) - 2025-09-08
4+ ### Other Changes
5+ - fix: replace LegacyScript with DeprecatedFeature in pipeline lint rules by @k1LoW in https://github.com/tailor-platform/patterner/pull/2
Original file line number Diff line number Diff line change @@ -48,6 +48,17 @@ Or specify a workspace ID directly:
4848patterner lint -w YOUR_WORKSPACE_ID
4949```
5050
51+ ** Note:** The lint command requires a Tailor Platform access token. Set the ` TAILOR_TOKEN ` environment variable:
52+
53+ ``` bash
54+ # Using tailorctl to get access token
55+ env TAILOR_TOKEN=$( tailorctl auth get accessToken) patterner lint
56+
57+ # Or set the token directly
58+ export TAILOR_TOKEN=your_access_token
59+ patterner lint
60+ ```
61+
5162### View Metrics
5263
5364Display metrics about resources in your workspace:
@@ -56,6 +67,17 @@ Display metrics about resources in your workspace:
5667patterner metrics
5768```
5869
70+ ** Note:** The metrics command requires a Tailor Platform access token. Set the ` TAILOR_TOKEN ` environment variable:
71+
72+ ``` bash
73+ # Using tailorctl to get access token
74+ env TAILOR_TOKEN=$( tailorctl auth get accessToken) patterner metrics
75+
76+ # Or set the token directly
77+ export TAILOR_TOKEN=your_access_token
78+ patterner metrics
79+ ```
80+
5981The metrics command outputs detailed JSON data about your workspace resources.
6082
6183## Configuration
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package version
22
33const (
44 Name = "patterner"
5- Version = "0.0 .0"
5+ Version = "0.1 .0"
66)
77
88var Revision = "HEAD"
You can’t perform that action at this time.
0 commit comments