testdriverai 5.7.41 → 5.7.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -119,12 +119,14 @@ jobs:
|
|
|
119
119
|
name: Commit Snippets
|
|
120
120
|
needs: run-tests
|
|
121
121
|
runs-on: ubuntu-latest
|
|
122
|
-
if: ${{ always() }}
|
|
123
122
|
env:
|
|
124
123
|
BASE_BRANCH: ${{ github.ref_name }}
|
|
125
124
|
steps:
|
|
126
125
|
- name: Check out current branch
|
|
127
126
|
uses: actions/checkout@v3
|
|
127
|
+
with:
|
|
128
|
+
token: ${{ secrets.GH_TOKEN }}
|
|
129
|
+
ref: ${{ github.head_ref }}
|
|
128
130
|
- name: Download all snippets artifacts
|
|
129
131
|
uses: actions/download-artifact@v4
|
|
130
132
|
with:
|
|
@@ -140,3 +142,4 @@ jobs:
|
|
|
140
142
|
message: "Update test snippets [skip ci]"
|
|
141
143
|
add: "docs/snippets/tests"
|
|
142
144
|
new_branch: ${{ github.head_ref }}
|
|
145
|
+
tag_push: "--force-with-lease"
|