First Commit

This commit is contained in:
2025-11-18 14:18:26 -07:00
parent 33eb6e3707
commit 27277ec342
6106 changed files with 3571167 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
# SPDX-FileCopyrightText: 2023 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
#
# 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 }}