needrestart/.forgejo/workflows/auto_merge.yml
Wachtl Enterprises LLC 538c3d16ef Add CI
Signed-off-by: Wachtl Enterprises LLC <tyrolyean@escpe.net>
2025-02-27 17:33:11 +01:00

25 lines
746 B
YAML

name: Auto merge upstream into this repo
on:
schedule:
- cron: "6 * * * *"
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:latest
steps:
- name: pull latest
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.PKG_API_DEPLOY_KEY }}
- name: merge repos and push
run: |
git remote add upstream ${{ github.server_url }}/mirror/$(echo ${{ github.repository }} | sed 's/${{ github.repository_owner }}\///g').git
git config user.name schizoHAL
git config user.email wir+HAL@it-syndikat.org
git config pull.rebase true
git pull upstream master
git pull origin master
git push