Skip to content

Commit c1bd636

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

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,15 @@ We are also present on the `#openfeature` channel in the [CNCF slack](https://sl
118118

119119
### Integration tests
120120

121-
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 do not run with the default maven profile. 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 `mvn test -P integration-test`.
121+
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 do not run with the default maven profile. If you'd like to run them locally, you can start the flagd testbed with
122+
123+
```
124+
docker run -p 8013:8013 ghcr.io/open-feature/flagd-testbed:latest
125+
```
126+
and then run
127+
```
128+
mvn test -P integration-test
129+
```
122130

123131
## Releasing
124132

renovate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,13 @@
1414
"matchManagers": ["github-actions"],
1515
"automerge": true
1616
}
17+
],
18+
"regexManagers": [
19+
{
20+
"fileMatch": ["^README.md$", "^.github/workflows/pullrequest.yml$"],
21+
"matchStrings": ["ghcr\\.io\\/open-feature\\/flagd-testbed:(?<currentValue>.*?)\\n"],
22+
"depNameTemplate": "open-feature/test-harness",
23+
"datasourceTemplate": "github-releases"
24+
}
1725
]
1826
}

0 commit comments

Comments
 (0)