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' - name: 'Run Fetch Merged PRs Script'
shell: bash shell: bash
run: | run: |
chmod +x ./script.sh chmod +x ${{ github.action_path }}/script.sh
./script.sh ${{ github.action_path }}/script.sh
env: env:
OWNER: ${{ inputs.owner }} OWNER: ${{ inputs.owner }}
REPO: ${{ inputs.repo }} REPO: ${{ inputs.repo }}

View File

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