1
0
mirror of https://github.com/community-scripts/ProxmoxVE.git synced 2025-04-19 16:48:07 +00:00
This commit is contained in:
Michel Roegl-Brunner 2025-03-24 11:57:47 +01:00 committed by GitHub
parent 888b4c34bd
commit c9b5579869
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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