Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.

Commit 91d1153

Browse files
authored
Merge branch 'main' into update-pkgs
2 parents eb41d9d + 2d24ab7 commit 91d1153

4 files changed

Lines changed: 30 additions & 3 deletions

File tree

.octocov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ testExecutionTime:
88
if: true
99
diff:
1010
datastores:
11-
- artifact://${GITHUB_REPOSITORY}/default
11+
- artifact://${GITHUB_REPOSITORY}
1212
comment:
1313
if: is_pull_request
1414
summary:
1515
if: true
1616
report:
1717
if: is_default_branch
1818
datastores:
19-
- artifact://${GITHUB_REPOSITORY}/default
19+
- artifact://${GITHUB_REPOSITORY}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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

README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,17 @@ Or specify a workspace ID directly:
4848
patterner 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

5364
Display metrics about resources in your workspace:
@@ -56,6 +67,17 @@ Display metrics about resources in your workspace:
5667
patterner 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+
5981
The metrics command outputs detailed JSON data about your workspace resources.
6082

6183
## Configuration

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version
22

33
const (
44
Name = "patterner"
5-
Version = "0.0.0"
5+
Version = "0.1.0"
66
)
77

88
var Revision = "HEAD"

0 commit comments

Comments
 (0)