From 6884a75949577e9e56e9efa0bbe697819e3bce42 Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Mon, 8 Jan 2024 09:05:33 -0800 Subject: [PATCH] ORC-1574: Update `GitHub Action` YAML files in `branch-2.0` ### What changes were proposed in this pull request? This PR aims to update `GitHub Action` YAML files in `branch-2.0`. ### Why are the changes needed? To enable GitHub Actions on branch-2.0. ### How was this patch tested? This PR should trigger all CIs. Closes #1729 from dongjoon-hyun/ORC-1574. Authored-by: Dongjoon Hyun Signed-off-by: Dongjoon Hyun --- .github/workflows/build_and_test.yml | 6 +++--- .github/workflows/publish_snapshot.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index af61de7d40..f798be97b8 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -5,12 +5,12 @@ on: paths-ignore: - 'site/**' branches: - - main + - branch-2.0 pull_request: paths-ignore: - 'site/**' branches: - - main + - branch-2.0 # Cancel previous PR build and test concurrency: @@ -36,7 +36,7 @@ jobs: - name: "Test" run: | cd docker - ./run-one.sh local main ${{ matrix.os }} + ./run-one.sh local branch-2.0 ${{ matrix.os }} build: name: "Java ${{ matrix.java }} and ${{ matrix.cxx }} on ${{ matrix.os }}" diff --git a/.github/workflows/publish_snapshot.yml b/.github/workflows/publish_snapshot.yml index 5a91bcbfc2..b8ca3b7d9a 100644 --- a/.github/workflows/publish_snapshot.yml +++ b/.github/workflows/publish_snapshot.yml @@ -3,7 +3,7 @@ name: Publish Snapshot on: push: branches: - - main + - branch-2.0 jobs: publish-snapshot: