ci: extract wipe-mnesia into standalone workflows [skip ci]
Move IFT/stage Mnesia wipe out of CI pipeline choice so Gitea Actions shows them as separate dispatch workflows.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
name: Wipe Mnesia IFT
|
||||
|
||||
# Manual only: full Mnesia wipe on IFT (NOT prod).
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: wipe-mnesia-ift
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
wipe-mnesia-ift:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 45
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Full Mnesia wipe IFT
|
||||
env:
|
||||
SSH_HOST: ${{ secrets.IFT_SSH_HOST }}
|
||||
SSH_USER: ${{ secrets.IFT_SSH_USER }}
|
||||
SSH_KEY: ${{ secrets.IFT_SSH_PRIVATE_KEY }}
|
||||
run: bash scripts/ci-full-mnesia-wipe.sh ift
|
||||
Reference in New Issue
Block a user