-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a87e711
commit 15a4ea6
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 |
---|---|---|
|
@@ -34,14 +34,14 @@ jobs: | |
run: | | ||
export GITHUB_API_KEY=${{ secrets.GH_API_TOKEN }} | ||
bash ./bin/extract_all_tools_test.sh "${{ matrix.subset }}" | ||
ls -la results | ||
- name: Commit all tools | ||
# add or commit any changes in results if there was a change, merge with main and push as bot | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git add results | ||
git status | ||
git diff --quiet || (git commit -m "fetch all tools bot - step fetch") | ||
git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tools bot - step fetch") | ||
git pull -s recursive -X ours | ||
git push | ||
|