Skip to content

Commit 2826850

Browse files
committed
check if readme was changed
1 parent 55a4fcf commit 2826850

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/update_conferences.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,21 @@ jobs:
4141
if [ -f miner/requirements.txt ]; then pip install -r miner/requirements.txt; fi
4242
4343
- name: Mine conferences from Researchr
44-
run: python miner/mine_researchr.py
44+
run: python miner/get_confs_from_researchr.py
4545

4646
- name: Get J1C2 requirements
4747
run: python miner/get_j1c2_requirements.py
4848

4949
- name: Commit changes (if any)
5050
run: |
51+
if git diff --quiet README.md; then
52+
echo "No changes to commit."
53+
exit 0
54+
fi
55+
5156
git config user.name "github-actions[bot]"
5257
git config user.email "githubaction@noreply.github.com"
5358
5459
git add README.md
55-
git commit -m "chore: update README [skip ci]"
60+
git commit -m "chore: update README"
5661
git push

0 commit comments

Comments
 (0)