From c3032cdcf732d3387778d8718476cf7b68ef0c5c Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Wed, 25 Jan 2023 12:17:56 +0100 Subject: [PATCH] fix the RTD build skipping feature (#7476) * treat the pattern as a fixed string * skip-rtd [skip-ci] Intentionally misspell to make sure the skip is *not* triggered. * [skip-rtd] [skip-ci] --- .readthedocs.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index a5a68c3cdd1..62f82f54b65 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -6,7 +6,7 @@ build: python: mambaforge-4.10 jobs: post_checkout: - - (git --no-pager log --pretty="tformat:%s" -1 | grep -viq "[skip-rtd]") || exit 183 + - (git --no-pager log --pretty="tformat:%s" -1 | grep -vqF "[skip-rtd]") || exit 183 conda: environment: ci/requirements/doc.yml