Simulate validation issue #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sample.json validation | |
on: | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
outputs: | |
response: ${{ steps.fetch.outputs.response }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Validate any sample.json file | |
run: | | |
# Find all sample.json files in the pull request | |
files=$(git diff --name-only | grep 'sample.json$') | |
echo "Found sample.json files: $files" | |
id: fetch | |
failure: | |
needs: validate | |
runs-on: ubuntu-latest | |
if: failure() | |
steps: | |
- name: Fail | |
run: | | |
echo ${{ needs.validate.outputs.response }} | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: JSON.parse(`${{ needs.validate.outputs.response }}`).errors?.map(e => "- " + e).join("\n") | |
}) | |
- name: Fail | |
run: exit 1 |