Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@ name: PostHog Examples - E2E tests
permissions:
contents: read

# Temporarily disabled - uncomment triggers to re-enable
# on:
# schedule:
# # Runs nightly at 12am PST (which is 8am UTC)
# - cron: '0 8 * * *'
# workflow_dispatch:

on:
schedule:
# Runs nightly at 12am PST (which is 8am UTC)
- cron: '0 8 * * *'
workflow_dispatch:

# Temporarily disabled - remove this line to re-enable
if: false
inputs:
placeholder:
description: 'Workflow is disabled. This input is a placeholder.'
required: false

jobs:
discover:
Expand Down
25 changes: 15 additions & 10 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,23 @@ name: PostHog Examples - Integration tests
permissions:
contents: read

# Temporarily disabled - uncomment triggers to re-enable
# on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
# schedule:
# # Runs nightly at 12am PST (which is 8am UTC)
# - cron: '0 8 * * *'
# workflow_dispatch:

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
# Runs nightly at 12am PST (which is 8am UTC)
- cron: '0 8 * * *'
workflow_dispatch:

# Temporarily disabled - remove this line to re-enable
if: false
inputs:
placeholder:
description: 'Workflow is disabled. This input is a placeholder.'
required: false

jobs:
discover:
Expand Down