Merge branch 'main' into aromanovv/PD-3805-fix-email-list-sender-email #1478
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: commit | |
| # run lints even before someone submits a pr | |
| on: | |
| push: | |
| branches: | |
| - '**' # run on any branch | |
| - '!main' | |
| - '!development' | |
| # cancel running job if another commit comes in | |
| concurrency: | |
| group: commit-${{ github.ref }}-1 | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/lint.yml | |
| seed_maven_cache: | |
| uses: ./.github/workflows/seed_maven_cache.yml |