Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Export Center CI / export-ci (push) Has been cancelled
Symbols Server CI / symbols-smoke (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
28 lines
705 B
YAML
28 lines
705 B
YAML
name: evidence-locker
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
retention_target:
|
|
description: "Retention days target"
|
|
required: false
|
|
default: "180"
|
|
|
|
jobs:
|
|
check-evidence-locker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Emit retention summary
|
|
env:
|
|
RETENTION_TARGET: ${{ github.event.inputs.retention_target }}
|
|
run: |
|
|
echo "target_retention_days=${RETENTION_TARGET}" > out/evidence-locker/summary.txt
|
|
|
|
- name: Upload evidence locker summary
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: evidence-locker
|
|
path: out/evidence-locker/**
|