From f0c71a2a6df6e680f4e7bef12121c816ebc1b8ce Mon Sep 17 00:00:00 2001 From: Robin Holzinger Date: Wed, 1 May 2024 21:58:02 +0200 Subject: [PATCH] add dummy workflow to allow developing workflow in followup pr --- .github/workflows/build_dependencies.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build_dependencies.yaml diff --git a/.github/workflows/build_dependencies.yaml b/.github/workflows/build_dependencies.yaml new file mode 100644 index 000000000..6460237dd --- /dev/null +++ b/.github/workflows/build_dependencies.yaml @@ -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