-
Notifications
You must be signed in to change notification settings - Fork 16
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
063f5fd
commit 50fbdb3
Showing
1 changed file
with
10 additions
and
0 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 |
---|---|---|
|
@@ -27,6 +27,16 @@ jobs: | |
- name: Run script | ||
run: | | ||
python ./bin/get_public_galaxy_servers.py -o data/available_public_servers.csv | ||
- name: Commit servers | ||
# 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 pull --no-rebase -s recursive -X ours | ||
git add results | ||
git status | ||
git diff --quiet && git diff --staged --quiet || (git commit -m "fetch all tools bot - step get available servers") | ||
git push | ||
fetch-all-tools-stepwise: | ||
runs-on: ubuntu-20.04 | ||
|