From f1d463b0e4ca680f05f526c249f018d4eb7bd8b6 Mon Sep 17 00:00:00 2001 From: Moshe Immerman Date: Mon, 16 Oct 2023 22:29:43 +0300 Subject: [PATCH] chore: ignore generate-schemas and datasource deps --- .github/dependabot.yml | 16 ++++++++-------- .github/workflows/lint.yml | 2 ++ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a0a78a9dc..342e1448d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -25,15 +25,15 @@ updates: schedule: interval: daily - - package-ecosystem: gomod - directory: /fixtures/datasources - schedule: - interval: daily + # - package-ecosystem: gomod + # directory: /fixtures/datasources + # schedule: + # interval: daily - - package-ecosystem: gomod - directory: /hack/generate-schemas - schedule: - interval: daily + # - package-ecosystem: gomod + # directory: /hack/generate-schemas + # schedule: + # interval: daily - package-ecosystem: gomod directory: /sdk diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6629e34c1..7c91c4dac 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,6 +34,8 @@ jobs: CI: false run: | make resources + git checkout hack/generate-schemas/go.* + git checkout fixtures/datasources/go.* git diff changed_files=$(git status -s) [[ -z "$changed_files" ]] || (printf "Change is detected in some files: \n$changed_files\n Did you run 'make resources' before sending the PR?" && exit 1)