From 7e67fe9c6bc1c81cf71eecdb9ab964b50fe573fc Mon Sep 17 00:00:00 2001 From: Sayedzishan1 Date: Tue, 24 Jun 2025 12:52:14 +0530 Subject: [PATCH 1/5] Create greetings.yml --- .github/workflows/greetings.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/greetings.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100644 index 000000000..46774343e --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,16 @@ +name: Greetings + +on: [pull_request_target, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + permissions: + issues: write + pull-requests: write + steps: + - uses: actions/first-interaction@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-message: "Message that will be displayed on users' first issue" + pr-message: "Message that will be displayed on users' first pull request" From 3c6045cc80087360aa361111cb7fe0c81cd4673a Mon Sep 17 00:00:00 2001 From: Sayedzishan1 Date: Wed, 25 Jun 2025 12:16:36 +0530 Subject: [PATCH 2/5] new commit --- .github/workflows/custom-action.yml | 15 --------------- .github/workflows/greetings.yml | 16 ---------------- github-actions/templates/schedule.yml | 2 +- 3 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 .github/workflows/custom-action.yml delete mode 100644 .github/workflows/greetings.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 diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index 46774343e..000000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Greetings - -on: [pull_request_target, issues] - -jobs: - greeting: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "Message that will be displayed on users' first issue" - pr-message: "Message that will be displayed on users' first pull request" diff --git a/github-actions/templates/schedule.yml b/github-actions/templates/schedule.yml index a88231de6..9ae566778 100644 --- a/github-actions/templates/schedule.yml +++ b/github-actions/templates/schedule.yml @@ -1,6 +1,6 @@ on: schedule: - - cron: '*/5 * * * *' + - cron: '*/2 * * * *' jobs: hello_world: From fe978c2f554c6a7cc156e7924d6d08f9febc8f60 Mon Sep 17 00:00:00 2001 From: Sayedzishan1 Date: Wed, 25 Jun 2025 12:19:50 +0530 Subject: [PATCH 3/5] test --- github-actions/templates/schedule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-actions/templates/schedule.yml b/github-actions/templates/schedule.yml index 9ae566778..4186413d9 100644 --- a/github-actions/templates/schedule.yml +++ b/github-actions/templates/schedule.yml @@ -1,6 +1,6 @@ on: schedule: - - cron: '*/2 * * * *' + - cron: '*/1 * * * *' jobs: hello_world: From 7c40d94b2691bf63715ad238aab9360c40644ed5 Mon Sep 17 00:00:00 2001 From: Sayedzishan1 Date: Wed, 25 Jun 2025 12:21:17 +0530 Subject: [PATCH 4/5] test --- .github/workflows/schedule.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/schedule.yml diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml new file mode 100644 index 000000000..4186413d9 --- /dev/null +++ b/.github/workflows/schedule.yml @@ -0,0 +1,10 @@ +on: + schedule: + - cron: '*/1 * * * *' + +jobs: + hello_world: + runs-on: ubuntu-latest + steps: + - name: Echo current time + run: echo "The current server time is $(date)" From 29c9bd95a658ff8016fd23f624c2c417760acdcc Mon Sep 17 00:00:00 2001 From: Sayedzishan1 Date: Wed, 25 Jun 2025 15:01:39 +0530 Subject: [PATCH 5/5] test --- .github/workflows/schedule.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/workflows/schedule.yml diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml deleted file mode 100644 index 4186413d9..000000000 --- a/.github/workflows/schedule.yml +++ /dev/null @@ -1,10 +0,0 @@ -on: - schedule: - - cron: '*/1 * * * *' - -jobs: - hello_world: - runs-on: ubuntu-latest - steps: - - name: Echo current time - run: echo "The current server time is $(date)"