Skip to content

Commit a8c5610

Browse files
authored
chore: renovate regex manager to monitor test-harness version (#359)
Signed-off-by: Skye Gill <[email protected]>
1 parent 1c70a4b commit a8c5610

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,14 @@ Run tests with `npm test`.
2222

2323
### Integration tests
2424

25-
The continuous integration runs a set of [gherkin integration tests](https://github.com/open-feature/test-harness/blob/main/features/evaluation.feature) using [`flagd`](https://github.com/open-feature/flagd). These tests run with the "integration" npm script. If you'd like to run them locally, you can start the flagd testbed with `docker run -p 8013:8013 ghcr.io/open-feature/flagd-testbed:latest` and then run `npm run integration`.
25+
The continuous integration runs a set of [gherkin integration tests](https://github.com/open-feature/test-harness/blob/main/features/evaluation.feature) using [`flagd`](https://github.com/open-feature/flagd). These tests run with the "integration" npm script. If you'd like to run them locally, you can start the flagd testbed with
26+
```
27+
docker run -p 8013:8013 ghcr.io/open-feature/flagd-testbed:latest
28+
```
29+
and then run
30+
```
31+
npm run integration
32+
```
2633

2734
### Packaging
2835

renovate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,13 @@
1010
"matchCurrentVersion": "!/^0/",
1111
"automerge": true
1212
}
13+
],
14+
"regexManagers": [
15+
{
16+
"fileMatch": ["^CONTRIBUTING.md$", "^.github/workflows/pr-checks.yaml$"],
17+
"matchStrings": ["ghcr\\.io\\/open-feature\\/flagd-testbed:(?<currentValue>.*?)\\n"],
18+
"depNameTemplate": "open-feature/test-harness",
19+
"datasourceTemplate": "github-releases"
20+
}
1321
]
1422
}

0 commit comments

Comments
 (0)