Skip to content

chore: updated actions/github-script #37

chore: updated actions/github-script

chore: updated actions/github-script #37

name: Update release-candidate Branch
on:
push:
branches:
- main
jobs:
update-release-candidate-branch:
runs-on: ubuntu-24.04 # Use Ubuntu 24.04 explicitly
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Update release-candidate branch
run: |
git config user.name github-actions
git config user.email [email protected]
git checkout release-candidate
git merge origin/main
git push origin release-candidate