From 9f8120258725ef9e9d98f9c8c80ed22c94727110 Mon Sep 17 00:00:00 2001 From: ruuushhh <66899387+ruuushhh@users.noreply.github.com> Date: Wed, 22 May 2024 15:00:54 +0530 Subject: [PATCH 1/3] Add workflow for create release branch (#804) * Add workflow for create release branch * update channel * update channel * Testing --- .github/workflows/create_release_branch.yaml | 41 ++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/create_release_branch.yaml diff --git a/.github/workflows/create_release_branch.yaml b/.github/workflows/create_release_branch.yaml new file mode 100644 index 000000000..333ba97d9 --- /dev/null +++ b/.github/workflows/create_release_branch.yaml @@ -0,0 +1,41 @@ +name: Create Release Branch +on: + schedule: + # Run every Friday at 11:30 AM UTC (5:00 PM IST) + - cron: '35 09 * * WED' +jobs: + create-release-branch: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + ref: master + - name: Get Release Branch Name + run: | + echo "release_branch=integrations_app_release_$(date +%Y_%m_%d)" >> $GITHUB_ENV + echo "last_release_branch=integrations_app_release_$(date -d 'last friday' +%Y_%m_%d)" >> $GITHUB_ENV + - name: Check if release branch exists + run: | + if git ls-remote --exit-code --heads origin ${{env.release_branch}}; then + echo "branch_exists=true" >> $GITHUB_ENV + else + echo "branch_exists=false" >> $GITHUB_ENV + fi + - name: Create release branch + if: ${{env.branch_exists == 'false'}} + run: | + git checkout -b ${{env.release_branch}} + git push origin ${{env.release_branch}} + echo "message=Branch `${{env.release_branch}}` created successfully." >> $GITHUB_ENV + - name: Branch already exists + if: ${{env.branch_exists == 'true'}} + run: echo "message=Branch `${{env.release_branch}}` already exists." >> $GITHUB_ENV + - name: Send message on Slack + uses: archive/github-actions-slack@v2.0.1 + id: notify + with: + # Send message to #integrations slack channel + slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }} + slack-channel: C074E8V8EL8 + slack-text: "${{env.message}} \nCheck diff here: https://github.com/fylein/fyle-integrations-app/compare/${{env.last_release_branch}}...${{env.release_branch}}" \ No newline at end of file From 3c189cf5d4492ffb2d83561459cc02c3742f43ce Mon Sep 17 00:00:00 2001 From: ruuushhh <66899387+ruuushhh@users.noreply.github.com> Date: Wed, 22 May 2024 15:14:31 +0530 Subject: [PATCH 2/3] Testing release branch (#814) * Testing release branch * Testing release branch * Testing release branch * Testing release branch --- .github/workflows/create_release_branch.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create_release_branch.yaml b/.github/workflows/create_release_branch.yaml index 333ba97d9..7d7c91f23 100644 --- a/.github/workflows/create_release_branch.yaml +++ b/.github/workflows/create_release_branch.yaml @@ -2,7 +2,7 @@ name: Create Release Branch on: schedule: # Run every Friday at 11:30 AM UTC (5:00 PM IST) - - cron: '35 09 * * WED' + - cron: '48 9 * * 3' jobs: create-release-branch: runs-on: ubuntu-latest From b78adb4dcc9849e056e4dc555d9a3837c58827b0 Mon Sep 17 00:00:00 2001 From: ruuushhh <66899387+ruuushhh@users.noreply.github.com> Date: Wed, 22 May 2024 15:22:52 +0530 Subject: [PATCH 3/3] Update Release branch time (#815) --- .github/workflows/create_release_branch.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create_release_branch.yaml b/.github/workflows/create_release_branch.yaml index 7d7c91f23..85c5d9b9f 100644 --- a/.github/workflows/create_release_branch.yaml +++ b/.github/workflows/create_release_branch.yaml @@ -2,7 +2,7 @@ name: Create Release Branch on: schedule: # Run every Friday at 11:30 AM UTC (5:00 PM IST) - - cron: '48 9 * * 3' + - cron: '30 11 * * FRI' jobs: create-release-branch: runs-on: ubuntu-latest