unnecessary files removed #82
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: All Detections To Elastic | |
| on: | |
| push: | |
| path: | |
| - '**.toml' | |
| workflow_dispatch: | |
| jobs: | |
| elastic-detections-all: | |
| runs-on: ubuntu-latest | |
| env: | |
| ELASTIC_KEY: ${{ secrets.ELASTIC_KEY }} #Elastic_Key already define in Github, so no need to put the actual API key of Elastic Siem | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.14.3 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.14.3' | |
| - run: pip install requests | |
| - run: python development/toml_to_json.py |