-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change test action yaml to reset correctly.
- Loading branch information
1 parent
28b7bf9
commit 7fea8d3
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,8 +77,8 @@ jobs: | |
git config --global user.name "Actions User" | ||
git config --global user.email "[email protected]" | ||
git fetch origin master && git fetch origin test && git checkout test && git reset --hard master | ||
git fetch origin master && git fetch origin test && git branch -f test origin/master && git checkout test | ||
git add repo.json | ||
git commit -m "[CI] Updating repo.json for ${{ github.ref }}" || true | ||
git push origin test || true | ||
git push origin test -f || true |