We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 028474e commit 71deb51Copy full SHA for 71deb51
1 file changed
.github/workflows/update.yml
@@ -38,14 +38,13 @@ jobs:
38
mkdir -p docs
39
mv index.xml docs/index.xml
40
41
+ - uses: actions/checkout@v2
42
+ with:
43
+ token: ${{ secrets.GH_PAT }}
44
- name: Commit RSS update
45
run: |
46
git config user.name "MisterJack49"
47
git config user.email "misterjack49@users.noreply.github.com"
48
git add docs/index.xml
49
git diff --cached --quiet || git commit -m "Update RSS feed"
- git remote set-url origin "https://x-access-token:${{ secrets.GH_PAT }}@github.com/${{ github.repository }}"
- git remote -v
- git config user.name
50
- git config user.email
51
- git push "https://x-access-token:${{ secrets.GH_PAT }}@github.com/${{ github.repository }}" HEAD:master
+ git push
0 commit comments