mirror of
https://github.com/Yamato-Security/WELA.git
synced 2026-01-12 03:03:13 +01:00
25 lines
650 B
YAML
25 lines
650 B
YAML
name: create-rule-meta.json
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout self repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Checkout hayabusa-rules
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: Yamato-Security/hayabusa-rules
|
|
path: hayabusa-rules
|
|
|
|
- name: debug
|
|
run: cd wela-extractor && ls -la ../hayabusa-rules && ls -la ../config
|
|
|
|
- name: Run
|
|
run: cd wela-extractor && cargo run --release -- ../hayabusa-rules ../config/eid_subcategory_mapping.csv ../config/hayabusa-rule-meta.json
|