This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
chore(deps): update dependency verify.xunit to v23.3.0 #283
Workflow file for this run
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: Dummy Terraform validate and plan | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**' | |
- '!infra/**' | |
permissions: | |
contents: read | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
name: Validate Terraform configuration | |
runs-on: ubuntu-latest | |
steps: | |
- name: Succeed | |
run: exit 0 | |
plan-staging: | |
name: Plan staging environment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Succeed | |
run: exit 0 | |
plan-production: | |
name: Plan production environment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Succeed | |
run: exit 0 | |
plan-global: | |
name: Plan global environment | |
runs-on: ubuntu-latest | |
steps: | |
- name: Succeed | |
run: exit 0 |