Skip to content

chore: [AB#16156] update release helper script #161

chore: [AB#16156] update release helper script

chore: [AB#16156] update release helper script #161

Workflow file for this run

name: Merge content-repo from main
on:
push:
branches:
- main
jobs:
merge-content:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout full repo
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Configure Git user
run: |
git config --global user.email "business-engineering@innovation.nj.gov"
git config --global user.name "NJ Innovation CI"
- name: Fetch content-repo branch
run: git fetch origin content-repo
- name: Merge main into content-repo
run: |
git checkout content-repo
git merge origin/main --no-edit
- name: Push merged branch
run: git push origin content-repo