n8n/.github/workflows/test-workflows-nightly.yml
Artem Sorokin f632578f8b
ci: Backport GH workflow renames to 1.x branch (#23959)
Co-authored-by: Charlie Kolb <charlie@n8n.io>
2026-01-07 11:41:53 +01:00

21 lines
530 B
YAML

name: 'Test: Workflows Nightly'
on:
schedule:
- cron: '0 2 * * *'
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