We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77b94e7 commit d4b9fd4Copy full SHA for d4b9fd4
1 file changed
.github/workflows/frontend-deploy-workflow.yml
@@ -215,11 +215,19 @@ jobs:
215
timeout-minutes: ${{ inputs.deploy-timeout }}
216
permissions:
217
id-token: write
218
- contents: read
+ contents: write
219
220
steps:
221
- name: Check out Git repository
222
uses: actions/checkout@v4
223
+ with:
224
+ token: ${{ secrets.GH_TOKEN }}
225
+ fetch-depth: 0
226
+
227
+ - name: Configure Git
228
+ run: |
229
+ git config --global user.name "${{ github.actor }}"
230
+ git config --global user.email "${{ github.actor }}@users.noreply.github.com"
231
232
- name: Setup Node with Cache
233
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
0 commit comments