diff --git a/.github/workflows/dummy_commit.yml b/.github/workflows/dummy_commit.yml new file mode 100644 index 0000000..d09404c --- /dev/null +++ b/.github/workflows/dummy_commit.yml @@ -0,0 +1,24 @@ +name: Dummy commit + +on: + schedule: + # Triggers the workflow every 15 days at 5:00 UTC: + - cron: "0 5 15 * *" + workflow_dispatch: + +jobs: + run: + runs-on: ubuntu-latest + env: + CI_COMMIT_MESSAGE: Continuous Integration Build trigger + CI_COMMIT_AUTHOR: Continuous Integration + steps: + - uses: actions/checkout@v3 + with: + token: ${{ secrets.ROBOT_PAT_TRIGGER_E2E_WORKFLOWS }} + - name: Push commit to main + run: | + git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" + git config --global user.email "username@users.noreply.github.com" + git commit --allow-empty -m $CI_COMMIT_MESSAGE + git push