Skip to content

Commit

Permalink
chore: fix conform with scopes
Browse files Browse the repository at this point in the history
In recent versions of conform, scope is regexp so `*` is not a valid
regexp.

Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
  • Loading branch information
smira authored and talos-bot committed Apr 13, 2021
1 parent 21018f2 commit f981854
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .conform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ policies:
- talosctl
- kernel
- security
- ^v0.8
- '*'
- ^v0.11
- type: license
spec:
skipPaths:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ release-artifacts:

.PHONY: conformance
conformance: ## Performs policy checks against the commit and source code.
docker run --rm -it -v $(PWD):/src -w /src docker.io/autonomy/conform:v0.1.0-alpha.19
docker run --rm -it -v $(PWD):/src -w /src docker.io/autonomy/conform:v0.1.0-alpha.20

.PHONY: release-notes
release-notes:
Expand Down

0 comments on commit f981854

Please sign in to comment.