Skip to content

Commit 194dc73

Browse files
authored
[GitHub] Fix Git Status Check (#19)
1 parent 8b24fd5 commit 194dc73

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

actions/github/formatPullRequestTitle/action.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ runs:
2222
- name: Checkout
2323
uses: actions/checkout@v4
2424

25-
- name: Set execute permissions
26-
shell: bash
27-
run: chmod +x ${{github.action_path}}/entrypoint.sh
25+
- name: Set execute permissions
26+
shell: bash
27+
run: chmod +x ${{github.action_path}}/entrypoint.sh
2828

2929
- name: Format Pull Request Title
3030
shell: bash

actions/php/gitStatusCheck/action.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,15 @@ outputs:
1212
runs:
1313
using: 'composite'
1414
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Set execute permissions
19+
shell: bash
20+
run: chmod +x ${{github.action_path}}/entrypoint.sh
21+
1522
- name: Check Workflow Criteria
1623
shell: bash
17-
run: ./entrypoint.sh
24+
run: ${{github.action_path}}/entrypoint.sh
1825
env:
1926
BRANCH_NAME: ${{ inputs.branch }}

0 commit comments

Comments
 (0)