Skip to content

build(gha): add force checkbox to workflow dispatch #219

build(gha): add force checkbox to workflow dispatch

build(gha): add force checkbox to workflow dispatch #219

Workflow file for this run

name: 'On push ⚙️'
on:
push:
branches:
- main
- beta
- alpha
paths-ignore:
- ./**/*.md
- ./.idea/**
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
# Run setup initially to save cache and time on subsequent jobs
setup:
uses: ./.github/workflows/setup.yml
secrets: inherit
bundlewatch:
needs: setup
uses: ./.github/workflows/bundlewatch.yml
secrets: inherit
test:
needs: setup
uses: ./.github/workflows/test.yml
secrets: inherit
rebase-prs:
needs:
- test
- bundlewatch
uses: ./.github/workflows/rebase-prs.yml
secrets: inherit