Skip to content

Commit

Permalink
makers check
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Sep 11, 2024
1 parent 8e8f087 commit 7a73cbd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31079,7 +31079,8 @@ function getDuration(durationable) {
}
throw new Error("unexpected value is specified in durations");
}
var workflowFile = z2.string().endsWith(".yml");
var yamlPattern = /\.(yml|yaml)$/;
var workflowFile = z2.string().regex(yamlPattern);
var matchAllJobs = z2.object({
workflowFile,
jobName: z2.undefined(),
Expand Down

0 comments on commit 7a73cbd

Please sign in to comment.