Skip to content

ci: add comment

ci: add comment #1991

on: push
concurrency:
group: ${{ github.workflow}}-${{ github.ref }}
# Cancel previous runs if not on a release branch
cancel-in-progress: ${{ !contains(github.ref, fromJSON('["master", "main"]')) }}
jobs:
lint:
uses: ./.github/workflows/lint.yml
test:
uses: ./.github/workflows/test.yml
e2e:
uses: ./.github/workflows/e2e.yml
secrets: inherit
release:
needs: [lint, test, e2e]
uses: ./.github/workflows/release.yml
# Skip forks and dependabot PRs
if: "!github.event.push.repository.fork && github.actor != 'dependabot[bot]'"
secrets: inherit