File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1919 with :
2020 python-version : ' 3.x'
2121
22- - name : Sync with main branch
23- run : git pull origin main --rebase
22+ - name : Configure Github User & Sync with main branch
23+ run : |
24+ git config --global user.name "${{ secrets.GIT_USER_NAME }}"
25+ git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
26+ git pull origin main --rebase
2427
2528 - name : Run extract_pr_data.py
2629 working-directory : _MonthlyChallenges
3841 - name : Commit updated files
3942 run : |
4043 cd _MonthlyChallenges
41- git config --global user.name "${{ secrets.GIT_USER_NAME }}"
42- git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
4344 git add scoreboard.json DASHBOARD.md HISTORY.md
4445 git commit -m "Update challenge progress dashboard" || echo "No changes to commit"
4546 git push origin ${{ github.head_ref }}
You can’t perform that action at this time.
0 commit comments