Skip to content

Bump actions/checkout from 6 to 7 #915

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #915

Workflow file for this run

# Generated and maintained by the exasol-toolbox.
# Last generated with exasol-toolbox version 10.0.0.
name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
merge-gate:
name: Merge Gate
uses: ./.github/workflows/merge-gate.yml
secrets:
INTEGRATION_TEAM_SAAS_STAGING_HOST: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }}
INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }}
INTEGRATION_TEAM_SAAS_STAGING_PAT: ${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
permissions:
contents: read
report:
name: Report
needs:
- merge-gate
# This condition ensures the job runs if merge-gate finished (success or failure)
if: |
always() &&
needs.merge-gate.result != 'skipped' &&
needs.merge-gate.result != 'cancelled'
uses: ./.github/workflows/report.yml
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
permissions:
contents: read