We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a32b322 commit 2ffed63Copy full SHA for 2ffed63
.github/workflows/create-emulator-pr.yml
@@ -104,8 +104,12 @@ jobs:
104
const branch_name = pr.head.ref;
105
const emulator_branch = `testing-sdk-${branch_name}`;
106
107
+ // Debug: check current directory and list files
108
+ console.log('Current working directory:', process.cwd());
109
+ console.log('Directory contents:', fs.readdirSync('.'));
110
+
111
// Read and populate PR template
- 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');
113
const pr_body = template
114
.replace(/{{PR_NUMBER}}/g, pr.number)
115
.replace(/{{BRANCH_NAME}}/g, branch_name);
0 commit comments