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 1120541 commit 0aaf535Copy full SHA for 0aaf535
1 file changed
.github/workflows/changelog-agent.yml
@@ -404,6 +404,16 @@ jobs:
404
fs.writeFileSync('prompt.txt', userPrompt);
405
core.setOutput('date_str', dateStr);
406
407
+ - name: Set up Node.js for Copilot CLI
408
+ if: steps.check_parent.outputs.has_parent == 'true' && steps.check_existing.outputs.exists == 'false'
409
+ uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
410
+ with:
411
+ node-version: 24
412
+
413
+ - name: Install GitHub Copilot CLI
414
415
+ run: npm install -g @github/copilot
416
417
- name: Generate changelog draft via Copilot
418
if: steps.check_parent.outputs.has_parent == 'true' && steps.check_existing.outputs.exists == 'false'
419
id: generate_draft
0 commit comments