attack-coverage-update #9
This file contains 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: attack-coverage-update | |
on: | |
workflow_dispatch: | |
inputs: | |
update-coverage: | |
description: 'Update the docs/ATT&CK-coverage.md file' | |
required: true | |
default: '--update-coverage' | |
jobs: | |
pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout detection-rules | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip cache purge | |
pip install .[dev] | |
- name: Build release package with navigator files | |
run: | | |
python -m detection_rules dev build-release --generate-navigator | |
- name: Set github config | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "protectionsmachine" | |
- name: Update navigator gist files and docs/ATT&CK-coverage.md file. | |
env: | |
GITHUB_TOKEN: "${{ secrets.NAVIGATOR_GIST_TOKEN }}" | |
run: | | |
python -m detection_rules dev update-navigator-gists "${{ github.event.inputs.update-coverage }}" | |
git add docs/"ATT\&CK-coverage.md" | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
assignees: '${{github.actor}}' | |
delete-branch: true | |
branch: "update-attack-coverage" | |
commit-message: "Update ATT&CK coverage URL(s) in docs/ATT&CK-coverage.md" | |
branch-suffix: "short-commit-hash" | |
base: main | |
title: 'Update ATT&CK coverage URL(s) in docs/ATT&CK-coverage.md' | |
body: | | |
Update ATT&CK coverage URL(s) in docs/ATT&CK-coverage.md | |
- Autogenerated from job `attack-coverage-update: pr`. | |
labels: "backport: auto" | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-files | |
path: | | |
releases |