Nighly bump tests/reference-images submodule #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2023 Klarälvdalens Datakonsult AB, a KDAB Group company <[email protected]> | |
# | |
# SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only | |
# | |
# | |
# | |
name: Nighly bump tests/reference-images submodule | |
on: | |
schedule: | |
- cron: "0 3 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup git author name | |
run: | | |
git config --global user.email "kddw@actions" | |
git config --global user.name "KDDW Actions" | |
- name: bump submodule | |
run: | | |
cd tests/reference-images/ | |
git checkout main | |
cd ../.. | |
git add tests/reference-images/ | |
if [ -n "$(git status --porcelain)" ]; then | |
BRANCH_NAME=update/ref-images/`git rev-parse HEAD` | |
git checkout -B $BRANCH_NAME | |
git commit -m "Bump tests/reference-images/" | |
git push origin $BRANCH_NAME | |
gh pr create --base main --title "Bump tests/reference-images/" --body "Automatically created via GH actions." | |
fi | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |