Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
chore: adding dummy commit to refresh scheduler
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Paitrault <[email protected]>
  • Loading branch information
Freyskeyd committed Nov 30, 2023
1 parent 6211553 commit cc71cb8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dummy_commit.yml
Original file line number Diff line number Diff line change
@@ -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 "[email protected]"
git commit --allow-empty -m $CI_COMMIT_MESSAGE
git push

0 comments on commit cc71cb8

Please sign in to comment.