We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b63cb9c + 6c907ad commit 8e213ebCopy full SHA for 8e213eb
script/check_incoming_branchname.clj
@@ -14,7 +14,9 @@
14
(cond
15
(= branchname "master") [:master]
16
(re-matches release-regex branchname) [:release (extract-release-num branchname)]
17
- (str/starts-with? branchname "docs-workflow-test-") [:test branchname]))
+ (or
18
+ (= branchname "doc-update-detection")
19
+ (str/starts-with? branchname "docs-workflow-test-")) [:test branchname]))
20
21
(defn -main
22
"This is called from the `process_docs_changes.yml` workflow. It checks that
0 commit comments