Skip to content

Commit

Permalink
check action path (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
flukolo4ek authored Oct 14, 2024
1 parent 9973221 commit e83566a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
- name: Get current labels from PR
id: get_labels
shell: bash
run: src/labels/get.sh
run: ${{ github.action_path }}/src/labels/get.sh
env:
REPO: ${{ inputs.github_owner }}/${{ inputs.github_repo }}
PR_NUMBER: ${{ inputs.github_pr_number }}
Expand All @@ -33,7 +33,7 @@ runs:
- name: Construct labels to add/delete
id: construct_labels
shell: bash
run: .github/.scripts/construct_labels.sh
run: ${{ github.action_path }}/.github/.scripts/construct_labels.sh
env:
REPO: ${{ inputs.github_owner }}/${{ inputs.github_repo }}
PR_NUMBER: ${{ inputs.github_pr_number }}
Expand Down

0 comments on commit e83566a

Please sign in to comment.