Skip to content

Commit

Permalink
Create downmerge.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
amitsingh-007 committed Jan 5, 2025
1 parent 23c065c commit aab465b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/downmerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Downmerge Changes
on:
push:
branches:
- main

jobs:
Sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Downmerge main -> renovate-updates
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git checkout renovate-updates
git merge -m 'Merge branch 'main' into renovate-updates' main
git push origin renovate-updates

0 comments on commit aab465b

Please sign in to comment.