From ce136cf4773eeb851787bfe93031d488dcb61af4 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Thu, 15 Jun 2023 23:46:55 +0200 Subject: [PATCH] github actions: update-metadata: run metadata update and URL check jobs in parallel - ref. https://github.com/awesome-selfhosted/awesome-selfhosted-data/issues/27 --- .github/workflows/update-metadata.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-metadata.yml b/.github/workflows/update-metadata.yml index d51e1f2149..9489ad7382 100644 --- a/.github/workflows/update-metadata.yml +++ b/.github/workflows/update-metadata.yml @@ -10,7 +10,7 @@ concurrency: cancel-in-progress: true jobs: - test_schedule: + update-metadata: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -24,4 +24,8 @@ jobs: git add software/ tags/ platforms/ licenses*.yml git diff-index --quiet HEAD || git commit -m "[bot] update projects metadata" git push + + url-check: + runs-on: ubuntu-latest + steps: - run: make url_check