Add custom source sha (#126)

Co-authored-by: Tonye Jack <jtonye@ymail.com>
This commit is contained in:
Krasimir Nikolov
2021-07-14 23:57:17 +03:00
committed by GitHub
parent b4b0cdd1b5
commit 53afe7a5b5
4 changed files with 22 additions and 3 deletions

View File

@@ -130,3 +130,13 @@ jobs:
echo "${{ toJSON(steps.changed-files-specific-comma.outputs) }}"
shell:
bash
- name: Run changed-files with custom sha
id: changed-files-custom-sha
uses: ./
with:
sha: ${{ github.event.pull_request.head.sha }}
- name: Show output
run: |
echo "${{ toJSON(steps.changed-files-custom-sha.outputs) }}"
shell:
bash