fix: incorrect file path and parameters for pr_diff (#23143)

This commit is contained in:
Jean-Sébastien Herbaux 2025-03-13 17:50:33 +01:00 committed by GitHub
parent 45d227ac28
commit b26c2a1f44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -26,8 +26,8 @@ runs:
- name: 'Run Fetch Merged PRs Script'
shell: bash
run: |
chmod +x ./script.sh
./script.sh
chmod +x ${{ github.action_path }}/script.sh
${{ github.action_path }}/script.sh
env:
OWNER: ${{ inputs.owner }}
REPO: ${{ inputs.repo }}

View File

@ -26,8 +26,8 @@ jobs:
id: pr_diff
uses: ./.github/actions/pr_diff
with:
owner: ${{ github.repository_owner }}
repo: ${{ github.repository }}
owner: strapi
repo: strapi
base_branch: ${{ github.event.inputs.base_branch }}
target_branch: ${{ github.event.inputs.target_branch }}