From 925d784a6eff0d3db299c822f4e91614b5b97e44 Mon Sep 17 00:00:00 2001 From: Niraj Palecha Date: Thu, 2 Feb 2023 03:53:10 +0530 Subject: [PATCH 1/5] remove ref release from checkout --- .github/workflows/tag-and-release.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/tag-and-release.yml b/.github/workflows/tag-and-release.yml index 858ecc2..cec0546 100644 --- a/.github/workflows/tag-and-release.yml +++ b/.github/workflows/tag-and-release.yml @@ -8,8 +8,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - with: - ref: release - name: Stamp tag id: stamp From 85024f491c92df5944b40c4a1dfa67885b43755d Mon Sep 17 00:00:00 2001 From: Niraj Palecha Date: Thu, 2 Feb 2023 03:55:34 +0530 Subject: [PATCH 2/5] update ref in sync-branches to release branch --- .github/workflows/sync-branches.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-branches.yml b/.github/workflows/sync-branches.yml index d141749..6899f01 100644 --- a/.github/workflows/sync-branches.yml +++ b/.github/workflows/sync-branches.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v3 with: - ref: production + ref: release - name: Reset promotion branch run: | git fetch origin master:master From 490af1db7b731ebe0a1042ca7d8c3612380c6f6f Mon Sep 17 00:00:00 2001 From: Niraj Palecha Date: Mon, 8 May 2023 13:02:01 +0530 Subject: [PATCH 3/5] test.md --- test.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 test.md diff --git a/test.md b/test.md new file mode 100644 index 0000000..d96c7ef --- /dev/null +++ b/test.md @@ -0,0 +1 @@ +FOO \ No newline at end of file From 38bf3a53062cf0c8edd2ff6ba83633c31d0f8b5d Mon Sep 17 00:00:00 2001 From: Niraj Date: Mon, 8 May 2023 13:02:20 +0530 Subject: [PATCH 4/5] Update test.md --- test.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.md b/test.md index d96c7ef..5d703c3 100644 --- a/test.md +++ b/test.md @@ -1 +1,2 @@ -FOO \ No newline at end of file +FOO +BAR From fbf6fbd4917e768e8c74e0a82577b956274ce000 Mon Sep 17 00:00:00 2001 From: Niraj Palecha <8666468+niraj8@users.noreply.github.com> Date: Tue, 19 Aug 2025 14:24:37 +0530 Subject: [PATCH 5/5] test workflow for git push commit --- .github/workflows/test-git-commit-push.yml | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/test-git-commit-push.yml diff --git a/.github/workflows/test-git-commit-push.yml b/.github/workflows/test-git-commit-push.yml new file mode 100644 index 0000000..8c2fd93 --- /dev/null +++ b/.github/workflows/test-git-commit-push.yml @@ -0,0 +1,24 @@ +name: test-commit-push + +on: + workflow_dispatch: {} +jobs: + update-image: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout repository + uses: actions/checkout@v5 + + - name: Create dummy changes + run: | + echo "Dummy change at $(date)" >> DUMMY.md + + - name: Commit and push changes + run: | + git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --local user.name "github-actions[bot]" + git add . + git commit -m "ci: test commit from gh actions" || exit 0 + git push