mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 10:50:35 +08:00
ci: add empty nightly workflow (#3559)
This commit is contained in:
16
.github/workflows/nightly_build.yml
vendored
Normal file
16
.github/workflows/nightly_build.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: Nightly Build
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *" # Run every day at midnight (UTC)
|
||||
|
||||
env:
|
||||
POETRY_VERSION: "1.8.2"
|
||||
|
||||
jobs:
|
||||
hello-world:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Run hello world
|
||||
run: |
|
||||
echo "Hello, world!"
|
||||
Reference in New Issue
Block a user