Skip to content

Commit e6b6b62

Browse files
authored
Update cleanup-audit.yml
1 parent 3bbf47e commit e6b6b62

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/cleanup-audit.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
name: 🧹 Cleanup Audit
22

33
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)
412
pull_request:
513
branches: [ main, develop ]
614
push:
715
branches: [ main, develop ]
816

17+
918
jobs:
1019
cleanup-audit:
1120
runs-on: ubuntu-latest
@@ -15,7 +24,8 @@ jobs:
1524
uses: actions/checkout@v4
1625
with:
1726
fetch-depth: 0
18-
27+
- name: Prepare artifacts directory
28+
run: mkdir -p artifacts
1929
- name: Set up Python
2030
uses: actions/setup-python@v4
2131
with:

0 commit comments

Comments
 (0)