From 659bb614342acab0f8a112f33882f6e7f356d8f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulises=20Gasc=C3=B3n?= Date: Thu, 18 Apr 2024 13:24:53 +0200 Subject: [PATCH] chore: linting --- .github/workflows/integration-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 9f3f833c2d..57c20cb2f8 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -16,9 +16,9 @@ jobs: id: get_repo run: | if [[ "${{ github.event_name }}" == "pull_request" ]]; then - echo ::set-output name=repo::${{ github.event.pull_request.head.repo.full_name }} + echo "repo=${{ github.event.pull_request.head.repo.full_name }}" >> $GITHUB_OUTPUT else - echo ::set-output name=repo::${{ github.repository }} + echo "repo=${{ github.repository }}" >> $GITHUB_OUTPUT fi - name: Repository Dispatch