Skip to content

Ajout du backlink sur les iframes de l'assistant #2653

Ajout du backlink sur les iframes de l'assistant

Ajout du backlink sur les iframes de l'assistant #2653

Workflow file for this run

name: 💣 Review
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
ci:
name: 🤖 CI
uses: ./.github/workflows/ci.yml
airflow_docker:
name: 🐳 Airflow Docker
uses: ./.github/workflows/airflow_docker.yml
secrets: inherit # pragma: allowlist secret`
with:
image_tag: review
webapp:
name: 🟠 Webapp
uses: ./.github/workflows/_deploy-webapp.yml
secrets: inherit # pragma: allowlist secret`
needs: [ci]
with:
environment: preprod
airflow:
name: 🟠 Airflow
uses: ./.github/workflows/_deploy-airflow.yml
secrets: inherit # pragma: allowlist secret`
needs: [ci, airflow_docker]
with:
environment: preprod
# Address actions/missing-workflow-permissions rule in
# code scanning alerts
permissions:
contents: read