Merge branch 'master' into release-candidate-4.5.0 #82
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
# The idea with this workflow is to allow core reviewers to trigger the | |
# integration tests by pushing a branch to the sceptre repository. | |
name: branch-integration-tests | |
on: | |
push: | |
branches: | |
- '*' # matches every branch that doesn't contain a '/' | |
- '*/*' # matches every branch containing a single '/' | |
- '**' # matches every branch | |
- '!master' # excludes master | |
jobs: | |
integration-tests: | |
if: ${{ github.ref != 'refs/heads/master' }} | |
uses: "./.github/workflows/integration-tests.yaml" | |
with: | |
# role generated from https://github.com/Sceptre/sceptre-aws/blob/master/config/prod/gh-oidc-sceptre-tests.yaml | |
role-to-assume: "arn:aws:iam::743644221192:role/gh-oidc-sceptre-tests" |