Skip to content

Commit

Permalink
feat(build): Run the great Bazel Steward 🤵 as GitHub Action (enola-de…
Browse files Browse the repository at this point in the history
  • Loading branch information
vorburger committed Mar 3, 2025
1 parent 2c6731b commit 73cc6ca
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/bazel-steward.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# SPDX-License-Identifier: Apache-2.0
#
# Copyright 2025 The Enola <https://enola.dev> Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# https://virtuslab.github.io/bazel-steward/docs/installation.html

name: Bazel Steward

on:
workflow_dispatch:
schedule:
- cron: "30 5 * * *" # runs every day at 5:30 am

jobs:
bazel-steward:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: VirtusLab/bazel-steward@da4afb73b57160cb1e9663d4b89bae0ec75a7a71 # v1.6.0
with:
# github-personal-token: 'TODO'
additional-args: "--update-all-prs"

0 comments on commit 73cc6ca

Please sign in to comment.