From ff0caf46fb705d5ef4580ad8a2918f474bba43a0 Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Wed, 12 Apr 2023 13:57:55 -0700 Subject: [PATCH] chore: restore GHA CI just for main branch Our release script expects to be able to run tests there, so we should be verifying that each commit is releasable --- .github/workflows/ci.yaml | 15 +++++++++++++++ .github/workflows/release_prep.sh | 0 2 files changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yaml mode change 100644 => 100755 .github/workflows/release_prep.sh diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000000..a5fb2e295c --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,15 @@ +name: CI + +# Controls when the action will run. +on: + # Triggers the workflow only for the main branch (no need to duplicate Buildkite) + push: + branches: [main] + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + test: + uses: bazel-contrib/.github/.github/workflows/bazel.yaml@v2 + with: + folders: '["."]' diff --git a/.github/workflows/release_prep.sh b/.github/workflows/release_prep.sh old mode 100644 new mode 100755