name: disable region
on:
  workflow_dispatch:
    inputs:
      environment:
        description: 'The environment to disable a region within'
        required: true
        default: 'dev'
      region:
        description: 'The region to disable. (eu-central-1, us-east-1, ap-northeast-1)'
        required: true
jobs:
  go-dark:
    uses: getncompanyx/some-actions/.github/workflows/disable-region.yml@main
    with:
      environment: ${{ github.event.inputs.environment }}
      region: ${{ github.event.inputs.region }}
    secrets: inherit