Skip to content

Commit

Permalink
add dummy workflow to allow developing workflow in followup pr
Browse files Browse the repository at this point in the history
  • Loading branch information
robinholzi committed May 1, 2024
1 parent 3038049 commit f0c71a2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build_dependencies.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Build Dependencies

on:
schedule:
- cron: '0 0 1 * *' # Run at midnight on the first of every month
workflow_dispatch:
pull_request: # TODO: remove once fully implemented

jobs:
build_grpc:
name: Build gRPC artifacts
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Check out codebase
uses: actions/checkout@v4

0 comments on commit f0c71a2

Please sign in to comment.