This commit is contained in:
Michel Roegl-Brunner
2025-03-24 11:57:47 +01:00
committed by GitHub
parent 888b4c34bd
commit c9b5579869

View File

@@ -48,6 +48,7 @@ jobs:
uses: actions/github-script@v7 uses: actions/github-script@v7
with: with:
script: | script: |
async function main() {
const fs = require('fs').promises; const fs = require('fs').promises;
const path = require('path'); const path = require('path');
@@ -157,7 +158,10 @@ jobs:
console.log(JSON.stringify(categorizedPRs, null, 2)); console.log(JSON.stringify(categorizedPRs, null, 2));
return categorizedPRs; return categorizedPRs;
}
main().catch(error => {
console.error("Error in script:", error);
});
- name: Update CHANGELOG.md - name: Update CHANGELOG.md
uses: actions/github-script@v7 uses: actions/github-script@v7