This commit is contained in:
Somil Ganguly 2021-12-22 11:48:19 +05:30 коммит произвёл GitHub
Родитель 466dc7313f
Коммит 569d496d1f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 1 удалений

6
.github/workflows/validate.yml поставляемый
Просмотреть файл

@ -112,6 +112,10 @@ jobs:
- name: "Results"
shell: bash
run: |
gh pr comment ${{ github.event.pull_request.number }} --body-file /tmp/OUTPUT.md
if [ -f /tmp/OUTPUT.md ]; then
gh pr comment ${{ github.event.pull_request.number }} --body-file /tmp/OUTPUT.md
else
echo "There are no results, so no comments are posted. For further information please look into the validate step."
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}