Skip to content

fix: add workflow for client #13

fix: add workflow for client

fix: add workflow for client #13

Workflow file for this run

#
# Copyright (C) 2019-2024 vdaas.org vald team <vald@vdaas.org>
#
# 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.
#
name: "Sync Vald"
on:
pull_request:
# schedule:
# - cron: "*/10 * * * *"
jobs:
sync-main:
uses: ./.github/workflows/_build.yaml
secrets: inherit
semver-auto:
needs:
- sync

Check failure on line 28 in .github/workflows/sync.yaml

View workflow run for this annotation

GitHub Actions / Sync Vald

Invalid workflow file

The workflow is not valid. .github/workflows/sync.yaml (Line: 28, Col: 9): Job 'semver-auto' depends on unknown job 'sync'. .github/workflows/sync.yaml (Line: 35, Col: 9): Job 'prepare-release' depends on job 'semver-auto' which creates a cycle in the dependency graph.
uses: ./.github/workflows/_semver-auto.yaml
secrets: inherit
prepare-release:
if: ${{ needs.semver-auto.outputs.RELEASE == 'true' }}
needs:
- semver-auto
uses: ./.github/workflows/_prepare-release.yaml
with:
IMAGE_TAG: ${{ needs.semver-auto.outputs.VERSION }}
secrets: inherit