Merging adf33a1820394c38a94a4660ac8b0dfffb7be2b4 into trunk-temp/pr-8… #1044
Workflow file for this run
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
# name: Merge | |
# permissions: read-all | |
# on: | |
# push: | |
# branches: | |
# - trunk-merge/** | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 10 | |
# name: Build | |
# steps: | |
# - name: Checkout Code | |
# uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
# - name: Cache Bazel | |
# uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 | |
# with: | |
# path: | | |
# ~/.cache/bazel | |
# key: ${{ runner.os }}-bazel-${{ hashFiles('WORKSPACE','MODULE.bazel') }} | |
# restore-keys: | | |
# ${{ runner.os }}-bazel- | |
# - name: Build | |
# run: bazelisk build //... |