From f00bdadf0c4d7465411fe7f349a19953ca401498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Nordstr=C3=B6m?= Date: Mon, 14 Mar 2022 13:47:43 +0100 Subject: [PATCH] Trigger Sqlsmith tests manually or by push to branch Add workflow events to allow manually running Sqlsmith tests or when pushing to the 'sqlsmith' branch. This is useful when submitting PRs that one wants to run extra checks on, including Sqlsmith. --- .github/workflows/sqlsmith.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/sqlsmith.yaml b/.github/workflows/sqlsmith.yaml index e7114dfd7..4132316da 100644 --- a/.github/workflows/sqlsmith.yaml +++ b/.github/workflows/sqlsmith.yaml @@ -3,6 +3,10 @@ on: schedule: # run daily 20:00 on master branch - cron: '0 2 * * *' + workflow_dispatch: + push: + branches: + - sqlsmith jobs: regress: name: SQLsmith PG${{ matrix.pg }}