From 039e70e1108337bc4a6aee7526d4d5b26a8f707f Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 11 Mar 2025 12:38:21 -0400 Subject: [PATCH] feat: main to feature branches merge --- .github/workflows/merge-main.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/merge-main.yml diff --git a/.github/workflows/merge-main.yml b/.github/workflows/merge-main.yml new file mode 100644 index 0000000000..560876bdf3 --- /dev/null +++ b/.github/workflows/merge-main.yml @@ -0,0 +1,14 @@ +name: Merge main +on: + schedule: + - cron: "0 7 * * 1-5" # At 07:00 UTC (00:00 PST, 03:00 EST), Monday through Friday + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Merge main + uses: awslabs/aws-kotlin-repo-tools/.github/actions/merge-main@main + with: + exempt-branches: # Add any if required \ No newline at end of file