Skip to content

Commit

Permalink
playing
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumWalley committed Apr 10, 2024
1 parent 81d7ba4 commit 23bf4b1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/fetch_includes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ jobs:
git pull origin ${GITHUB_REF}
git add --all
git commit -m "update remote assets"
echo "no-change=$?" >> $GITHUB_OUTPUT
echo "change=$?" >> $GITHUB_OUTPUT
- name: Push, and make PR
if: ${{ ! steps.commit.outputs.no-change }}
if: ${{ steps.commit.outputs.change != 0 }}
run: |
echo "last job ${{ steps.commit.outputs.change }}"
git push origin ${BRANCH_NAME}
gh pr create -B ${GITHUB_REF} -H ${BRANCH_NAME} --title 'Update Remote Assets' --body 'Created by Github action'
env:
Expand Down

0 comments on commit 23bf4b1

Please sign in to comment.