We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bbf47e commit e6b6b62Copy full SHA for e6b6b62
1 file changed
.github/workflows/cleanup-audit.yml
@@ -1,11 +1,20 @@
1
name: 🧹 Cleanup Audit
2
3
on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ score_threshold:
7
+ description: 'Highlight high-risk files with score ≥ this value'
8
+ required: false
9
+ default: '70'
10
+ schedule:
11
+ - cron: '0 3 * * 1' # chạy tự động mỗi thứ 2 03:00 UTC (tuỳ chọn)
12
pull_request:
13
branches: [ main, develop ]
14
push:
15
16
17
+
18
jobs:
19
cleanup-audit:
20
runs-on: ubuntu-latest
@@ -15,7 +24,8 @@ jobs:
24
uses: actions/checkout@v4
25
with:
26
fetch-depth: 0
-
27
+ - name: Prepare artifacts directory
28
+ run: mkdir -p artifacts
29
- name: Set up Python
30
uses: actions/setup-python@v4
21
31
0 commit comments