Skip to content

Commit

Permalink
Revert "chore: only run depot runner comparison when labelled (#21092)"
Browse files Browse the repository at this point in the history
This reverts commit 6eea1a6.
  • Loading branch information
pauldambra authored Mar 25, 2024
1 parent b04f787 commit d2b7935
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ci-backend-depot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@
name: Backend CI (depot)

on:
push:
branches:
- master
pull_request:
workflow_dispatch:
inputs:
clickhouseServerVersion:
description: ClickHouse server version. Leave blank for default
type: string

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down Expand Up @@ -33,7 +41,7 @@ jobs:
changes:
runs-on: depot-ubuntu-latest-4
timeout-minutes: 5
if: ${{ contains(github.event.pull_request.labels.*.name, 'test-depot') }}
if: github.repository == 'PostHog/posthog'
name: Determine need to run backend checks
# Set job outputs to values from filter step
outputs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-e2e-depot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
changes:
runs-on: depot-ubuntu-latest-4
timeout-minutes: 5
if: ${{ contains(github.event.pull_request.labels.*.name, 'test-depot') }}
if: github.repository == 'PostHog/posthog'
name: Determine need to run E2E checks
# Set job outputs to values from filter step
outputs:
Expand Down

0 comments on commit d2b7935

Please sign in to comment.