void-packages/.forgejo/workflows/checksum.yaml

50 lines
1.5 KiB
YAML

name: Generate Checksum
on:
pull_request:
branches:
- "master"
paths:
- "srcpkgs/**"
jobs:
renovate:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'Johnny5'
permissions:
contents: write
steps:
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Get changed packages
id: changed
uses: https://github.com/tj-actions/changed-files@a29e8b565651ce417abb5db7164b4a2ad8b6155c # v44
with:
since_last_remote_commit: true
- name: Create hostrepo and prepare masterdir
if: ${{ steps.changed.outputs.all_changed_files != '' }}
run: |
ln -s "$(pwd)" /hostrepo &&
common/travis/set_mirror.sh &&
common/travis/prepare.sh &&
common/travis/fetch-xtools.sh
- name: Update checksums
if: ${{ steps.changed.outputs.all_changed_files != '' }}
run: |
for p in $(echo "${{ steps.changed.outputs.all_changed_files }}" | xargs -r -n 1 cut -d / -f 2); do
xgensum "$p"
done
- name: Commit
if: ${{ steps.changed.outputs.all_changed_files != '' }}
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1
with:
commit_user_name: "Johnny5"
commit_user_email: "bot@snaile.de"
commit_author: "Johnny5 <bot@snaile.de>"
commit_message: "Update checksums"
file_pattern: "srcpkgs/*/template"