This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push: new 1accb6f7b ORC-1997: Add a daily build-and-test GitHub Action Job for `main` branch 1accb6f7b is described below commit 1accb6f7b3a06daff67d914a294519a13c12bd53 Author: Dongjoon Hyun <dongj...@apache.org> AuthorDate: Fri Sep 12 15:37:05 2025 -0700 ORC-1997: Add a daily build-and-test GitHub Action Job for `main` branch ### What changes were proposed in this pull request? This PR aims to add a daily build-and-test GitHub Action job for `main` branch. ### Why are the changes needed? Daily CI helps us to monitor the CI failures due to the GitHub Action virtual environment changes . ### How was this patch tested? Manual review because this is not triggered by this PR. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #2399 from dongjoon-hyun/ORC-1997. Authored-by: Dongjoon Hyun <dongj...@apache.org> Signed-off-by: Dongjoon Hyun <dongj...@apache.org> --- .github/workflows/daily_main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/daily_main.yml b/.github/workflows/daily_main.yml new file mode 100644 index 000000000..30b43cdfa --- /dev/null +++ b/.github/workflows/daily_main.yml @@ -0,0 +1,11 @@ +name: Daily (main) + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + run-build-and-test: + if: github.repository == 'apache/orc' + uses: ./.github/workflows/build_and_test.yml