diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2024-06-17 16:32:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 16:32:41 +0200 |
commit | 9872467251fac802b634c0276f49766be5932bdc (patch) | |
tree | 392a71d184334bd2da5acb9b26755665e361ef9e | |
parent | d0bdef381ee23c8e6b50851e0f5c007ed8af2a37 (diff) | |
parent | 4a143af318f3d6ba18c7ee5c63b20c411379f7d3 (diff) | |
download | nextcloud-server-9872467251fac802b634c0276f49766be5932bdc.tar.gz nextcloud-server-9872467251fac802b634c0276f49766be5932bdc.zip |
Merge pull request #45912 from nextcloud/fix/noid/3rdparty-check-ref
ci: use precise ref for 3rdparty check
-rw-r--r-- | .github/workflows/block-outdated-3rdparty.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/block-outdated-3rdparty.yml b/.github/workflows/block-outdated-3rdparty.yml index dba3f5f3e7a..9fbacd45dc7 100644 --- a/.github/workflows/block-outdated-3rdparty.yml +++ b/.github/workflows/block-outdated-3rdparty.yml @@ -41,7 +41,7 @@ jobs: - name: Last 3rdparty commit on target branch id: target run: | - echo "commit=$(git ls-remote https://github.com/nextcloud/3rdparty ${{ github.base_ref }} | awk '{ print $1}')" >> "$GITHUB_OUTPUT" + echo "commit=$(git ls-remote https://github.com/nextcloud/3rdparty refs/heads/${{ github.base_ref }} | awk '{ print $1}')" >> "$GITHUB_OUTPUT" - name: Compare if 3rdparty commits are different run: | |