forked from mirror/needrestart
parent
c2626cc8cd
commit
538c3d16ef
2 changed files with 50 additions and 0 deletions
.forgejo/workflows
25
.forgejo/workflows/auto_merge.yml
Normal file
25
.forgejo/workflows/auto_merge.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
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
|
25
.forgejo/workflows/build_pkg.yml
Normal file
25
.forgejo/workflows/build_pkg.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Try to build package and push to mirror
|
||||
on: [push, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ${{ vars.BUILD_IMAGE_RL }}
|
||||
options: --ulimit nofile=1024:10240
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build package
|
||||
uses: ${{ vars.PKG_ACTION_URL}}
|
||||
with:
|
||||
pkg: true
|
||||
- name: Copy to mirror
|
||||
run: |
|
||||
echo "${{ secrets.SSH_MIRROR }}" > ~/.ssh/id_ed25519
|
||||
echo "${{ vars.SIGNING_HOST }} ${{ vars.SIGNING_HOST_SSHKEY }}" >> ~/.ssh/known_hosts
|
||||
chmod -R 700 ~/.ssh
|
||||
sftp ${{ vars.SIGNING_USER }}@${{ vars.SIGNING_HOST }} <<EOF
|
||||
cd /${{ vars.SIGNING_PATH }}
|
||||
put *.pkg.tar.*
|
||||
EOF
|
Loading…
Add table
Reference in a new issue