Ajout du backlink sur les iframes de l'assistant #2653
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: 💣 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 |