Skip to content

Commit 20c547a

Browse files
committed
fix github resolver relative path
1 parent ca882a7 commit 20c547a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli-v3/src/rules/manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class GithubRulesManifestLoader implements RulesManifestLoader {
126126

127127
async loadRulesFile(relativePath: string): Promise<string> {
128128
const response = await fetch(
129-
`https://raw.githubusercontent.com/triggerdotdev/trigger.dev/refs/heads/${this.branch}/${relativePath}`
129+
`https://raw.githubusercontent.com/triggerdotdev/trigger.dev/refs/heads/${this.branch}/rules/${relativePath}`
130130
);
131131

132132
if (!response.ok) {

0 commit comments

Comments
 (0)