Remove classifiers (#1438) #7
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: | |
- '*' | |
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" |