From b0ae9a93d31abbcee8a4465a59f10d8c7300d761 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 8 Sep 2025 12:46:58 -0400 Subject: [PATCH] Enable automatically triggering workflows Also made YAML formatting of lists consistent across configs. --- .github/workflows/lint.yaml | 5 +++++ .github/workflows/tests.yaml | 11 +++++++++-- .github/workflows/typecheck.yaml | 11 +++++++++-- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4ed1670..cf3f806 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -18,9 +18,14 @@ on: push: branches: - main + pull_request: branches: - main + + # Enable manually triggering this workflow + workflow_dispatch: + schedule: # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule # diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 2ee67a0..3959260 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -16,9 +16,16 @@ name: "Run tests" on: push: - branches: [ main ] + branches: + - main + pull_request: - branches: [ main ] + branches: + - main + + # Enable manually triggering this workflow + workflow_dispatch: + schedule: # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule # diff --git a/.github/workflows/typecheck.yaml b/.github/workflows/typecheck.yaml index 1e12750..4c9b9f2 100644 --- a/.github/workflows/typecheck.yaml +++ b/.github/workflows/typecheck.yaml @@ -16,9 +16,16 @@ name: Typecheck on: push: - branches: [ main ] + branches: + - main + pull_request: - branches: [ main ] + branches: + - main + + # Enable manually triggering this workflow + workflow_dispatch: + schedule: # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule #