chore(deps) Update dependency rollup to v4.18.1 #174
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: β« Sync Updates | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
master: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
if: github.ref_name == 'dev' | |
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/create-pull-request@v5.0.3 | |
with: | |
labels: automated pr | |
branch: ${{github.ref_name}} | |
title: chore(sync) Syncing changes from ${{github.ref_name}} to master |