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 1887a26 commit 8a4b365Copy full SHA for 8a4b365
.github/workflows/pr-checklist.yml
@@ -20,10 +20,9 @@ jobs:
20
github-token: ${{ secrets.GITHUB_TOKEN }}
21
script: |
22
const fs = require('fs');
23
- const path = require('path');
24
25
// Read checklist from file
26
- const checklistPath = path.join(process.env.GITHUB_WORKSPACE, '.github', 'pr-checklist.md');
+ const checklistPath = process.env.GITHUB_WORKSPACE + '/.github/pr-checklist.md';
27
const checklistContent = fs.readFileSync(checklistPath, 'utf8');
28
29
// Check if we already posted a checklist comment
0 commit comments