Skip to content

Commit

Permalink
Fix YAML (curly braces in one-liners) & case-sensitive label
Browse files Browse the repository at this point in the history
  • Loading branch information
jadb committed Aug 23, 2016
1 parent af88fd7 commit e81fd1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .varci.yml
Expand Up @@ -29,7 +29,7 @@ ruleset:
label: -Invalid
when:
- action = "reopened"
- filter(labels, "name") has "invalid"
- filter(labels, "name") has "Invalid"

request_missing_version:
name: "Request missing version"
Expand All @@ -38,7 +38,7 @@ ruleset:
when:
- action = "opened" or action = "re-opened"
- body matches "/\[x\] bug/"
- not(body matches "/CakePHP Version: (\d+\.)?(\d+\.)?(\*|\d+)/")
- not(body matches "/CakePHP Version: [0-9a-f]{5,40}/")
comment: {{ user.login }}, please include the CakePHP version number you are using in your description. It helps us debug your issue.
- 'not(body matches "/CakePHP Version: (\d+\.)?(\d+\.)?(\*|\d+)/")'
- 'not(body matches "/CakePHP Version: [0-9a-f]{5,40}/")'
comment: '{{ user.login }}, please include the CakePHP version number you are using in your description. It helps us debug your issue.'

0 comments on commit e81fd1b

Please sign in to comment.