Skip to content

Commit 2ffed63

Browse files
committed
chore: update
1 parent a32b322 commit 2ffed63

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/create-emulator-pr.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,12 @@ jobs:
104104
const branch_name = pr.head.ref;
105105
const emulator_branch = `testing-sdk-${branch_name}`;
106106
107+
// Debug: check current directory and list files
108+
console.log('Current working directory:', process.cwd());
109+
console.log('Directory contents:', fs.readdirSync('.'));
110+
107111
// Read and populate PR template
108-
const template = fs.readFileSync('../testing-sdk/.github/workflows/emulator-pr-template.md', 'utf8');
112+
const template = fs.readFileSync('testing-sdk/.github/workflows/emulator-pr-template.md', 'utf8');
109113
const pr_body = template
110114
.replace(/{{PR_NUMBER}}/g, pr.number)
111115
.replace(/{{BRANCH_NAME}}/g, branch_name);

0 commit comments

Comments
 (0)