From 6ad29ab5b87496c38887d6b6259ea3ece44e8cc9 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Tue, 24 Jan 2023 17:18:29 +0100 Subject: [PATCH] tools: github actions: run URL checker *after* pushing changes in the scheduled update-metadata workflow - we want the updates pushed regardless of possible URL check errors --- .github/workflows/update-metadata.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-metadata.yml b/.github/workflows/update-metadata.yml index 19289d894c..5ced39267f 100644 --- a/.github/workflows/update-metadata.yml +++ b/.github/workflows/update-metadata.yml @@ -11,7 +11,6 @@ jobs: steps: - uses: actions/checkout@v3 - run: make update_metadata - - run: make url_check - run: make awesome_lint - run: make export - name: commit and push changes @@ -21,3 +20,4 @@ jobs: git add software/ tags/ platforms/ licenses*.yml git diff-index --quiet HEAD || git commit -m "[bot] update projects metadata" git push + - run: make url_check