From 69ff065f8bb9ed78394cef2cf3adf9c6baded0e3 Mon Sep 17 00:00:00 2001 From: vineet1492 Date: Tue, 12 Aug 2025 22:55:53 +0530 Subject: [PATCH 1/5] commit schedule yaml --- .github/workflows/.keep | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/.keep b/.github/workflows/.keep index e69de29bb..6fe2d3209 100644 --- a/.github/workflows/.keep +++ b/.github/workflows/.keep @@ -0,0 +1,10 @@ +on: + schedule: + - cron: '*/5 * * * *' + +jobs: + hello_world: + runs-on: ubuntu-latest + steps: + - name: Echo current time + run: echo "The current server time is $(date)" \ No newline at end of file From a1192051aac65e14447744ccecec0ce3b947910c Mon Sep 17 00:00:00 2001 From: vineet1492 Date: Tue, 12 Aug 2025 23:05:26 +0530 Subject: [PATCH 2/5] removed custom-action --- .github/workflows/custom-action.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/workflows/custom-action.yml diff --git a/.github/workflows/custom-action.yml b/.github/workflows/custom-action.yml deleted file mode 100644 index 7a87b53f1..000000000 --- a/.github/workflows/custom-action.yml +++ /dev/null @@ -1,15 +0,0 @@ -on: [push] - -jobs: - my-job: - runs-on: ubuntu-latest - name: A job to say hello - steps: - - name: Hello world action step - id: hello - uses: omenking/barsoom@0.0.6 - with: - name: 'Brown' - # Use the output from the `hello` step - - name: Get the Output - run: echo "The time was ${{ steps.hello.outputs.greeting }}" \ No newline at end of file From 4cb6af5cc5767007401dae5756628019f73221f0 Mon Sep 17 00:00:00 2001 From: vineet140792 Date: Tue, 12 Aug 2025 23:11:33 +0530 Subject: [PATCH 3/5] Delete .github/workflows/.keep --- .github/workflows/.keep | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/workflows/.keep diff --git a/.github/workflows/.keep b/.github/workflows/.keep deleted file mode 100644 index 6fe2d3209..000000000 --- a/.github/workflows/.keep +++ /dev/null @@ -1,10 +0,0 @@ -on: - schedule: - - cron: '*/5 * * * *' - -jobs: - hello_world: - runs-on: ubuntu-latest - steps: - - name: Echo current time - run: echo "The current server time is $(date)" \ No newline at end of file From 8324329b816c4c8d70adb45a0f3bccab9312c36d Mon Sep 17 00:00:00 2001 From: vineet1492 Date: Tue, 12 Aug 2025 23:23:33 +0530 Subject: [PATCH 4/5] schedule.yml --- .github/workflows/keep | 0 .github/workflows/schedule.yml | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100644 .github/workflows/keep create mode 100644 .github/workflows/schedule.yml diff --git a/.github/workflows/keep b/.github/workflows/keep new file mode 100644 index 000000000..e69de29bb diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml new file mode 100644 index 000000000..6fe2d3209 --- /dev/null +++ b/.github/workflows/schedule.yml @@ -0,0 +1,10 @@ +on: + schedule: + - cron: '*/5 * * * *' + +jobs: + hello_world: + runs-on: ubuntu-latest + steps: + - name: Echo current time + run: echo "The current server time is $(date)" \ No newline at end of file From 6ff460255c569f6811535ff0f6365c75f2909ca0 Mon Sep 17 00:00:00 2001 From: vineet1492 Date: Tue, 12 Aug 2025 23:26:44 +0530 Subject: [PATCH 5/5] edit schedule.yml --- .github/workflows/schedule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml index 6fe2d3209..cf3180d74 100644 --- a/.github/workflows/schedule.yml +++ b/.github/workflows/schedule.yml @@ -1,6 +1,6 @@ on: schedule: - - cron: '*/5 * * * *' + - cron: '*/2 * * * *' jobs: hello_world: