-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (32 loc) · 1009 Bytes
/
scenario-foi-redaction.yml
File metadata and controls
35 lines (32 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Scenario / foi-redaction
on:
pull_request:
paths:
- 'cloudformation/scenarios/foi-redaction/**'
- '.github/workflows/scenario-ci.yml'
- '.github/workflows/scenario-foi-redaction.yml'
- 'scripts/isb/**'
- 'tests/smoke/**'
workflow_dispatch:
inputs:
reuse_account_id:
description: 'DEBUG: reuse an already-leased account (set via `isb assign` locally). Skips acquire/release.'
required: false
type: string
default: ''
concurrency:
# Repo-wide group across ALL scenario callers because ISB caps ci-bot
# at 1 active lease at a time (maxLeasesPerUser). Concurrent dispatches
# would 409. Serialise here so each scenario gets a turn.
group: scenario-ci-pool
cancel-in-progress: false
permissions:
id-token: write
contents: read
jobs:
smoke:
uses: ./.github/workflows/scenario-ci.yml
with:
scenario: foi-redaction
reuse_account_id: ${{ inputs.reuse_account_id || '' }}
secrets: inherit