diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 8a2a544..6f6734e 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -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: diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 1b9fbf0..f56be83 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -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: