We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92a3052 commit 3efdb4dCopy full SHA for 3efdb4d
src/ci/github-actions/calculate-job-matrix.py
@@ -80,7 +80,7 @@ def get_custom_jobs(ctx: GitHubCtx) -> List[str]:
80
if ctx.commit_message is None:
81
return []
82
83
- regex = re.compile(r"ci-job: (.*)")
+ regex = re.compile(r"^ci-job: (.*)", re.MULTILINE)
84
jobs = []
85
for match in regex.finditer(ctx.commit_message):
86
jobs.append(match.group(1))
0 commit comments