-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: enable nightly run file verification (#3063)
This PR moves the `.github/workflows/write_read_roundtrip_test/action.yml` to `.github/workflows/file_verification.yml` to enable it to be `github action triggered`. This PR also enables nightly run file verification workflow and renames a directory
- Loading branch information
1 parent
270cab3
commit 9e18322
Showing
3 changed files
with
30 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
# name: Nightly Run Jobs | ||
name: Nightly Run Jobs | ||
|
||
# on: | ||
# schedule: | ||
# - cron: '0 0 * * *' # Runs every day at midnight UTC | ||
# workflow_dispatch: | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Runs every day at midnight UTC | ||
workflow_dispatch: | ||
|
||
# jobs: | ||
# trigger-file-verification: | ||
# runs-on: ubuntu-24.04 | ||
|
||
# steps: | ||
# - name: Nightly Run File Verification Workflow | ||
# uses: benc-uk/workflow-dispatch@v1 | ||
# with: | ||
# workflow: Lance File Write Read Round Trip Verification | ||
# ref: main | ||
# token: ${{ secrets.GITHUB_TOKEN }} | ||
jobs: | ||
run: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Nightly Run File Verification Workflow | ||
uses: benc-uk/workflow-dispatch@v1 | ||
with: | ||
workflow: file_verification.yml | ||
ref: main | ||
token: ${{ secrets.GITHUB_TOKEN }} |