Add xgensum pipeline
This commit is contained in:
parent
01357218b4
commit
2086aec075
|
@ -0,0 +1,53 @@
|
|||
name: Generate Checksum
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- "opened"
|
||||
- "synchronize"
|
||||
- "reopened"
|
||||
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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
|
||||
|
||||
- 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@3ea6ae190baf489ba007f7c92608f33ce20ef04a # v4.16.0
|
||||
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"
|
|
@ -2,6 +2,8 @@ name: Check build
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "master"
|
||||
paths:
|
||||
- "srcpkgs/**"
|
||||
push:
|
||||
|
@ -9,7 +11,6 @@ on:
|
|||
- "dev-**"
|
||||
paths:
|
||||
- "srcpkgs/**"
|
||||
- ".forgejo/**"
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
|
Loading…
Reference in New Issue