File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 4545| pr-title-prefix | PRのタイトルの接頭語。 | | fix |
4646| pr-description-prefix | 本文の接頭語。 | | |
4747| exit-failure | 実行完了時にCIを失敗させるかどうか。 | | true |
48+ | working-directory | 実行対象のディレクトリ | | |
4849
4950## 対応しているトリガー
5051* pull_request
Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ inputs:
2121 description : ' 実行完了時にCIを失敗させるかどうか。'
2222 required : false
2323 default : " true"
24+ working-directory :
25+ description : ' 実行対象のディレクトリ'
26+ required : false
27+ default : " "
2428runs :
2529 using : " composite"
2630 steps :
2933 id : diff
3034 shell : bash
3135 if : github.event_name != 'pull_request' || github.event.action != 'closed'
36+ working-directory : ${{inputs.working-directory}}
3237 run : ${{ github.action_path }}/scripts/action/show_diff.sh
3338 - name : Set HEAD_REF
3439 shell : bash
4247 REPOSITORY : ${{github.repository}}
4348 BRANCH_NAME_PREFIX : ${{inputs.branch-name-prefix}}
4449 if : steps.diff.outputs.result != '' && ((github.event_name == 'pull_request' && github.event.action != 'closed') || github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch')
50+ working-directory : ${{inputs.working-directory}}
4551 run : ${{ github.action_path }}/scripts/action/push.sh
4652 shell : bash
4753 - name : Set org name
You can’t perform that action at this time.
0 commit comments