forked from mirror/needrestart
25 lines
746 B
YAML
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
|