Prevent deleting of partially completed missions #170
This file contains hidden or 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: Run integration tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| release: | |
| types: [ published ] | |
| workflow_dispatch: | |
| inputs: | |
| lane: | |
| description: "dev or latest" | |
| required: true | |
| default: latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| run-integration-tests: | |
| uses: equinor/armada/.github/workflows/run_integration_tests.yml@main | |
| with: | |
| # Pick lane automatically based on event, or honor manual input | |
| lane: ${{ github.event_name == 'push' && 'dev' | |
| || github.event_name == 'release' && 'latest' | |
| || github.event_name == 'workflow_dispatch' && inputs.lane | |
| || 'latest' }} | |
| secrets: | |
| INTEGRATION_TEST_AZURE_CLIENT_SECRET: ${{ secrets.INTEGRATION_TEST_AZURE_CLIENT_SECRET }} |