-
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
afbe5db
commit 347913f
Showing
1 changed file
with
23 additions
and
21 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
matrix: | ||
python-version: [3.8] | ||
subset: | ||
- repositories01.list | ||
- repositories02.list | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
|
@@ -38,25 +38,27 @@ jobs: | |
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git diff --quiet || (git add results && git commit -m "fetch all tools bot - step fetch") | ||
git add results | ||
git diff --quiet || (git commit -m "fetch all tools bot - step fetch") | ||
git pull -s recursive -X ours | ||
git push | ||
fetch-all-tools-merge: | ||
runs-on: ubuntu-20.04 | ||
needs: fetch-all-tools-stepwise | ||
name: Fetch all tools merge | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
- name: Install requirement | ||
run: python -m pip install -r requirements.txt | ||
- name: Run script | ||
run: | | ||
cat results/repositories*.list_tools.tsv > results/all_tools.tsv | ||
bash ./bin/extract_all_tools_downstream.sh | ||
- name: Commit all tools | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git diff --quiet || (git add results && git commit -m "fetch all tools bot - step merge") | ||
git push | ||
# fetch-all-tools-merge: | ||
# runs-on: ubuntu-20.04 | ||
# needs: fetch-all-tools-stepwise | ||
# name: Fetch all tools merge | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions/setup-python@v4 | ||
# - name: Install requirement | ||
# run: python -m pip install -r requirements.txt | ||
# - name: Run script | ||
# run: | | ||
# cat results/repositories*.list_tools.tsv > results/all_tools.tsv | ||
# bash ./bin/extract_all_tools_downstream.sh | ||
# - name: Commit all tools | ||
# run: | | ||
# git config user.name github-actions | ||
# git config user.email [email protected] | ||
# git diff --quiet || (git add results && git commit -m "fetch all tools bot - step merge") | ||
# git push |