We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34c287b commit 921e1b3Copy full SHA for 921e1b3
.github/workflows/update-submodules.yml
@@ -92,6 +92,11 @@ jobs:
92
git add lib
93
git commit -m "chore: update git submodules to latest version"
94
95
+ - name: Configure Git to use PAT for push
96
+ if: steps.check_updates.outputs.has_changes == 'true'
97
+ run: |
98
+ git remote set-url origin https://x-access-token:${{ secrets.GH_WORKFLOW_PAT }}@github.com/${{ github.repository }}
99
+
100
- name: Push changes
101
if: steps.check_updates.outputs.has_changes == 'true'
102
run: |
0 commit comments