We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55a4fcf commit 2826850Copy full SHA for 2826850
.github/workflows/update_conferences.yaml
@@ -41,16 +41,21 @@ jobs:
41
if [ -f miner/requirements.txt ]; then pip install -r miner/requirements.txt; fi
42
43
- name: Mine conferences from Researchr
44
- run: python miner/mine_researchr.py
+ run: python miner/get_confs_from_researchr.py
45
46
- name: Get J1C2 requirements
47
run: python miner/get_j1c2_requirements.py
48
49
- name: Commit changes (if any)
50
run: |
51
+ if git diff --quiet README.md; then
52
+ echo "No changes to commit."
53
+ exit 0
54
+ fi
55
+
56
git config user.name "github-actions[bot]"
57
git config user.email "githubaction@noreply.github.com"
58
59
git add README.md
- git commit -m "chore: update README [skip ci]"
60
+ git commit -m "chore: update README"
61
git push
0 commit comments