Re-add pull request trigger to GH Actions

This commit is contained in:
Konstantin Wohlwend 2025-03-12 10:43:36 -07:00
parent 474dc4efe1
commit bd687e8c43
11 changed files with 33 additions and 13 deletions

View File

@ -1,6 +1,8 @@
name: Did all the other checks pass?
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,7 +1,8 @@
name: Update pull request branches
on:
push: {}
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,6 +1,8 @@
name: Ensure Prisma migrations are in sync with the schema
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,6 +1,8 @@
name: Docker Build and Push
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,6 +1,8 @@
name: Docker Test
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,6 +1,8 @@
name: Runs E2E API Tests
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,6 +1,8 @@
name: Lint & build
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,6 +1,8 @@
name: Preview Docs
on: pull_request
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,6 +1,8 @@
name: "Dev Environment Test"
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,7 +1,8 @@
name: "Run setup tests"
on: push
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@ -1,7 +1,9 @@
on: push
name: TOC Generator
on:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }}