From 818c87aaf27d56cbdee03620367a0f598189b67d Mon Sep 17 00:00:00 2001 From: Mertcan D <54983926+mertcandav@users.noreply.github.com> Date: Mon, 21 Aug 2023 16:40:28 +0300 Subject: [PATCH] Update directory.yml --- .github/workflows/directory.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/directory.yml b/.github/workflows/directory.yml index 79afd1a..926e4c1 100644 --- a/.github/workflows/directory.yml +++ b/.github/workflows/directory.yml @@ -49,10 +49,10 @@ jobs: if [[ `git status --porcelain` ]]; then git add . - git commit -m 'Update `DIRECTORY.md`' - git push origin directory_update-${{ github.sha }}:directory_update-${{ github.sha }} + git commit -m 'Update `DIRECTORY.md`' || true + git push origin directory_update-${{ github.sha }}:directory_update-${{ github.sha }} || true - gh pr create --base ${GITHUB_REF##*/} --head directory_update-${{ github.sha }} --title 'Update `DIRECTORY.md`' --body 'Updated the `DIRECTORY.md` file (see the diff. for changes).' || true + gh pr create --base ${GITHUB_REF##*/} --head directory_update-${{ github.sha }} --title 'Upda te `DIRECTORY.md`' --body 'Updated the `DIRECTORY.md` file (see the diff. for changes).' || true fi env: GH_TOKEN: ${{ github.token }}