Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDEnYO committed Aug 6, 2024
1 parent 2aace13 commit 4dce6be
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/checkAudit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ jobs:
with:
script: |
const fs = require('fs');
const core = require('@actions/core'); // Import core module
// ANSI escape codes for colors (used for colored output in Git action console)
const colors = {
Expand Down Expand Up @@ -316,9 +317,10 @@ jobs:
if (!allCommitsFound)
core.setFailed("This check failed");
else {
console.log(`${colors.green}All audit commits have been successfully verified.${colors.reset}`);
core.setOutput('all_commits_present', 'true');
}
})();
console.log(`${colors.green}All audit commits have been successfully verified.${colors.reset}`);
core.setOutput('all_commits_present', 'true');
# - name: Assign "Ready_For_PROD_Deployment" label

0 comments on commit 4dce6be

Please sign in to comment.