chore(release): 6.10.0 #15
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
# This workflow skips all heavy stuff for release branches | |
name: Skip Tests | |
on: | |
push: | |
branches: | |
- 'release-**' | |
tags-ignore: | |
- '**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
reviewdog: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "Not required"' | |
basic: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "Not required"' |