fix(terraform): apply job should fail if unable to restore cache #671
Workflow file for this run
This file contains 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: 🧹 Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- edited | |
- synchronize | |
- reopened | |
jobs: | |
lint-codebase: | |
name: Lint codebase | |
uses: ./.github/workflows/super-linter.yml | |
permissions: | |
contents: read | |
statuses: write | |
with: | |
filter_regex_exclude: (.*CHANGELOG\.md$|docs/workflows/.*) | |
lint-pr: | |
name: Lint PR | |
uses: ./.github/workflows/commitlint.yml | |
with: | |
message: ${{ github.event.pull_request.title }} |