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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 - name: Get changed packages id: changed uses: https://github.com/tj-actions/changed-files@c65cd883420fd2eb864698a825fc4162dd94482c # 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 " commit_message: "Update checksums" file_pattern: "srcpkgs/*/template"