Merging 1f17bf015051300f352fb8d9be0f24f26ec3b0a8 into trunk-temp/pr-8… #1050
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 //... |