From 813eaed1bae845626baaa6817a5d78c7f76d012a Mon Sep 17 00:00:00 2001 From: Jean-Marie Renouard Date: Thu, 23 Mar 2023 14:22:40 +0000 Subject: [PATCH] fix: concurrent commit in this workflow --- .github/workflows/generate_examples.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate_examples.yml b/.github/workflows/generate_examples.yml index 4599238..cd87e7c 100644 --- a/.github/workflows/generate_examples.yml +++ b/.github/workflows/generate_examples.yml @@ -57,13 +57,14 @@ jobs: - name: Adding examples to Git run: | git add ./examples/github/result/mysql/${{ matrix.MYSQL_VERSION }}/* + sleep $[ ( $RANDOM % 10 ) + 1 ]s - name: Run the Action uses: devops-infra/action-commit-push@master with: github_token: "${{ secrets.GITHUB_TOKEN }}" - add_timestamp: true + add_timestamp: false commit_prefix: "[AUTO]" commit_message: "Updates result examples (via Actions)" force: false