Skip to content

chore(deps) Update dependency @semantic-release/github to v10.1.0 #65

chore(deps) Update dependency @semantic-release/github to v10.1.0

chore(deps) Update dependency @semantic-release/github to v10.1.0 #65

Workflow file for this run

name: ⏫ Sync Updates
on:
push:
branches:
- dev
- alpha
jobs:
alpha:
runs-on: ubuntu-latest
if: github.ref_name == 'dev'
steps:
- name: πŸ’Ύ Checkout
uses: actions/checkout@v4
with:
ref: alpha
- name: πŸ›‘ Reset promotion branch
run: |
git fetch origin ${{github.ref_name}}:${{github.ref_name}}
git reset --hard ${{github.ref_name}}
- name: πŸ†• Create Pull Request
uses: peter-evans/[email protected]
with:
labels: automated pr
branch: ${{github.ref_name}}
title: chore(sync) Syncing changes from ${{github.ref_name}} to alpha
master:
runs-on: ubuntu-latest
if: github.ref_name == 'alpha'
steps:
- name: πŸ’Ύ Checkout
uses: actions/checkout@v4
with:
ref: master
- name: πŸ›‘ Reset promotion branch
run: |
git fetch origin ${{github.ref_name}}:${{github.ref_name}}
git reset --hard ${{github.ref_name}}
- name: πŸ†• Create Pull Request
uses: peter-evans/[email protected]
with:
labels: automated pr
branch: ${{github.ref_name}}
title: chore(sync) Syncing changes from ${{github.ref_name}} to master