fix: concurrent commit in this workflow
This commit is contained in:
parent
703442ecb0
commit
813eaed1ba
1 changed files with 2 additions and 1 deletions
3
.github/workflows/generate_examples.yml
vendored
3
.github/workflows/generate_examples.yml
vendored
|
@ -57,13 +57,14 @@ jobs:
|
||||||
- name: Adding examples to Git
|
- name: Adding examples to Git
|
||||||
run: |
|
run: |
|
||||||
git add ./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }}/*
|
git add ./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }}/*
|
||||||
|
|
||||||
sleep $[ ( $RANDOM % 10 ) + 1 ]s
|
sleep $[ ( $RANDOM % 10 ) + 1 ]s
|
||||||
|
|
||||||
- name: Run the Action
|
- name: Run the Action
|
||||||
uses: devops-infra/action-commit-push@master
|
uses: devops-infra/action-commit-push@master
|
||||||
with:
|
with:
|
||||||
github_token: "${{ secrets.GITHUB_TOKEN }}"
|
github_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
add_timestamp: true
|
add_timestamp: false
|
||||||
commit_prefix: "[AUTO]"
|
commit_prefix: "[AUTO]"
|
||||||
commit_message: "Updates result examples (via Actions)"
|
commit_message: "Updates result examples (via Actions)"
|
||||||
force: false
|
force: false
|
||||||
|
|
Loading…
Reference in a new issue