n8n/.github/workflows/test-workflows-nightly.yml
n8n-cat-bot[bot] 0297d1467a
ci: Disable nightly schedule for workflow tests pipeline (#32848)
Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-23 12:35:02 +00:00

25 lines
913 B
YAML

name: 'Test: Workflows Nightly'
# Nightly schedule disabled (DEVP-544): the "Run Workflow Tests with Snapshots"
# job fails the majority of its runs due to host-level port contention on shared
# runners (a stale n8n process holds port 5679, so the Task Broker hits
# EADDRINUSE), not a product regression. Re-enable the `schedule` trigger once the
# port cleanup / ephemeral-port fix lands. The job can still be run on demand via
# workflow_dispatch.
on:
workflow_dispatch:
inputs:
git_ref_to_test:
description: 'The Git ref (branch, tag, or SHA) to run tests against.'
required: true
type: string
default: 'master'
jobs:
run_workflow_tests:
name: Run Workflow Tests
uses: ./.github/workflows/test-workflows-callable.yml
with:
git_ref: ${{ github.event_name == 'schedule' && 'master' || github.event.inputs.git_ref_to_test }}
secrets: inherit