Skip to content

Prevent deleting of partially completed missions #170

Prevent deleting of partially completed missions

Prevent deleting of partially completed missions #170

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 }}