Skip to content

Disable suggestAutoExecute and autoClickIfNeverClicked #256

Disable suggestAutoExecute and autoClickIfNeverClicked

Disable suggestAutoExecute and autoClickIfNeverClicked #256

Workflow file for this run

# Auto-build the dev branch and on success, publish a workflow-level
# "dev-branch-build" github status check.
name: 0 | Build dev
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
verify-build:
runs-on: ubuntu-latest
steps:
- uses: 3cities/checkout@f095bcc56b7c2baf48f3ac70d6d6782f4f553222
with:
ref: dev
- uses: ./.github/actions/verify-build
dev-branch-build: # no-op job to force a workflow-level "dev-branch-build" github status check to be published. Github automatically makes the result of each workflow job available as a status check, and we configured the main branch's protected branch settings to require this workflow-level "dev-branch-build" status check to pass.
needs: [verify-build]
runs-on: ubuntu-latest
steps:
- run: exit 0 # no-op because a job definition requires something to do, but all we want this job to do is publish a workflow-level github status check.