We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe4f73 commit fd4d64cCopy full SHA for fd4d64c
.github/workflows/update_challenge_progress.yml
@@ -18,7 +18,10 @@ jobs:
18
uses: actions/setup-python@v4
19
with:
20
python-version: '3.x'
21
-
+
22
+ - name: Sync with main branch
23
+ run: git pull origin main --rebase
24
25
- name: Run extract_pr_data.py
26
working-directory: _MonthlyChallenges
27
run: python extract_pr_data.py
@@ -37,7 +40,6 @@ jobs:
37
40
cd _MonthlyChallenges
38
41
git config --global user.name "${{ secrets.GIT_USER_NAME }}"
39
42
git config --global user.email "${{ secrets.GIT_USER_EMAIL }}"
- git pull origin main --rebase --autostash
43
git add scoreboard.json DASHBOARD.md HISTORY.md
44
git commit -m "Update challenge progress dashboard" || echo "No changes to commit"
45
git push origin ${{ github.head_ref }}
0 commit comments