forked from SigmaHQ/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (43 loc) · 1.58 KB
/
sigma-rule-promoter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: "Promote Experimental Rules To Test"
on:
#push:
# branches:
# - "*"
schedule:
- cron: "0 0 1 * *" # At 00:00 on day-of-month 1.
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pull-master:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: 3.11
- name: Execute Rule Promoter Script
run: |
pip install pySigma
python tests/promote_rules_status.py
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
reviewers: nasbench, frack113, phantinuss
delete-branch: true
commit-message: 'chore: promote older rules status from `experimental` to `test`'
branch: 'create-pull-request/rule-promotion'
title: 'Promote Older Rules From `experimental` to `test`'
body: |
### Summary of the Pull Request
This PR promotes and upgrade the status of rules that haven't been changed for over 300 days from `experimental` to `test`
### Changelog
chore: promote older rules status from `experimental` to `test`
### Example Log Event
N/A
### Fixed Issues
N/A
### SigmaHQ Rule Creation Conventions
- If your PR adds new rules, please consider following and applying these [conventions](https://github.com/SigmaHQ/sigma-specification/blob/main/sigmahq/sigmahq_conventions.md)