From 282101333aea06b6d642ca7dd73cd8df0eaf2b13 Mon Sep 17 00:00:00 2001 From: Petr Ruzicka Date: Sun, 21 Jun 2020 20:32:25 +0200 Subject: [PATCH] Fix GH variables to pass the tests (#37) --- .github/dependabot.yml | 2 -- .github/workflows/vuepress-build-check-deploy.yml | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e18dd43..6ebae6b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,5 +8,3 @@ updates: directory: "/" schedule: interval: "daily" - labels: - - "dependencies" diff --git a/.github/workflows/vuepress-build-check-deploy.yml b/.github/workflows/vuepress-build-check-deploy.yml index add2444..8647a98 100644 --- a/.github/workflows/vuepress-build-check-deploy.yml +++ b/.github/workflows/vuepress-build-check-deploy.yml @@ -68,11 +68,11 @@ jobs: npm install npm run build cp LICENSE docs/.vuepress/dist - sed -e "s@(part-@(https://github.com/${GITHUB_REPOSITORY}/tree/master/docs/part-@" -e 's@.\/.vuepress\/public\/@./@' docs/README.md > docs/.vuepress/dist/README.md + sed -e "s@(part-@(https://github.com/${{ github.repository }}/tree/master/docs/part-@" -e 's@.\/.vuepress\/public\/@./@' docs/README.md > docs/.vuepress/dist/README.md - name: Check broken links env: - INPUT_URL: https://${{ github.event.repository.owner.name }}.github.io/${{ github.event.repository.name }} + INPUT_URL: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }} INPUT_PAGES_PATH: . INPUT_CMD_PARAMS: --buffer-size=8192 --concurrency=10 --skip-tls-verification --exclude=mylabs.dev run: |