Skip to content

ci(terraform): continue-on-error for job summary #13

ci(terraform): continue-on-error for job summary

ci(terraform): continue-on-error for job summary #13

Workflow file for this run

---
name: Continuous Integration
on:
pull_request:
branches: [main, master, develop, 'releases/**', 'feat/**', 'fix/**']
push:
branches: [main]
paths:
- .github/workflows/integration.yml
- .github/workflows/linter.yml
- .github/workflows/semantic-pr.yml
- .github/workflows/sonar.yml
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
statuses: write
pull-requests: write
jobs:
semver:
if: ${{ github.base_ref != '' || github.event_name == 'pull_request' }}
uses: ./.github/workflows/semantic-pr.yml
lint:
uses: ./.github/workflows/linter.yml

Check failure on line 31 in .github/workflows/integration.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration

Invalid workflow file

The workflow is not valid. .github/workflows/integration.yml (Line: 31, Col: 11): Secret GH_TOKEN is required, but not provided while calling.
# sonar:
# uses: ./.github/workflows/sonar.yml
# secrets:
# token: ${{ env.SONAR_TOKEN }}
# terraform:
# strategy:
# matrix:
# working-directory:
# - 'terraform/deployments/dev'
# - 'terraform/deployments/stage'
# - 'terraform/deployments/prod'
# uses: ./.github/workflows/terraform.yml
# with:
# version: 1.4.4
# working-directory: ${{ matrix.working-directory }}
# format: false
# apply: false