Skip to content

Commit

Permalink
Added default-matrix-values workflow (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickGraham101 authored Mar 22, 2022
1 parent 91ee22f commit 8ca3644
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/default-matrix-values.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: DefaultMatrixValues

on:
pull_request:
workflow_dispatch:

jobs:
test:
name: Default Matrix Values
runs-on: ubuntu-latest
strategy:
matrix:
environment: [qa,staging,production,sandbox]
url: https://${{ matrix.environment }}.find-postgraduate-teacher-training.service.gov.uk
include:
- environment: production
url: https://www.find-postgraduate-teacher-training.service.gov.uk
max-parallel: 1
steps:
- name: Echo Values
run: |
echo "Environment: ${{ matrix.environment }}"
echo "URL: ${{ matrix.url }}"
1 change: 0 additions & 1 deletion .github/workflows/deployment-status-update.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: DeploymentStatusUpdate

on:
pull_request:
workflow_dispatch:
inputs:
fail-deployment:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/step-outputs-in-action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: StepOutputsInAction

on:
pull_request:
workflow_dispatch:

jobs:
Expand Down

0 comments on commit 8ca3644

Please sign in to comment.