We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1751655 commit 00d82f4Copy full SHA for 00d82f4
1 file changed
.github/workflows/entropy-beauty-scan.yml
@@ -71,7 +71,7 @@ jobs:
71
issue_number: context.issue.number,
72
body: body
73
});
74
- # ── Create issue on push ONLY if suspicious (entropy outside 4.3–4.7) ──
+ # ── Create issue on push ONLY if suspicious (entropy outside 4.3–5.1) ──
75
- name: Create issue on suspicious push
76
if: github.event_name == 'push' || github.event_name == 'release'
77
uses: actions/github-script@v8
@@ -82,7 +82,7 @@ jobs:
82
const beauty = JSON.parse(fs.readFileSync('/tmp/beauty.json', 'utf8'));
83
84
// Only create issue if it's NOT beautiful mid-4
85
- if (beauty.average_entropy >= 4.3 && beauty.average_entropy <= 4.7) {
+ if (beauty.average_entropy >= 4.3 && beauty.average_entropy <= 5.1) {
86
console.log("✅ Mid-4 beauty — no issue created");
87
return;
88
}
0 commit comments