Skip to content

Commit

Permalink
Merge branch 'main' into dependabot-github_actions-actions-checkout-4
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 5, 2024
2 parents ac38925 + ca743d0 commit 631daff
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/update-release-candidate-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Update Release candidate Branch

on:
push:
branches:
- main

jobs:
update-release-candidate-branch:
runs-on: ubuntu-latest

steps:
- name: Checkout main branch
uses: actions/checkout@v4
with:
ref: main

- name: Pull latest changes
run: git pull origin main

- name: Checkout release-candidate branch
run: git checkout release-candidate

- name: Merge main into release-candidate
run: git merge main

- name: Push changes
run: |
git push origin release-candidate

0 comments on commit 631daff

Please sign in to comment.