all-in-one/.github/workflows/imaginary-update.yml
copilot-swe-agent[bot] 77ddf66d3f Fix dependency update workflows to only run on main repository
Co-authored-by: punkyard <59349105+punkyard@users.noreply.github.com>
2025-08-15 11:56:52 +00:00

34 lines
1 KiB
YAML

name: imaginary-update
on:
workflow_dispatch:
schedule:
- cron: '00 12 * * *'
jobs:
run_update:
name: update to latest imaginary commit on master branch
runs-on: ubuntu-latest
if: github.repository == 'nextcloud/all-in-one'
steps:
- uses: actions/checkout@v4
- name: Run imaginary-update
run: |
# Imaginary
imaginary_version="$(
git ls-remote https://github.com/h2non/imaginary master \
| cut -f1 \
| tail -1
)"
sed -i "s|^ENV IMAGINARY_HASH.*$|ENV IMAGINARY_HASH=$imaginary_version|" ./Containers/imaginary/Dockerfile
- name: Create Pull Request
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
with:
commit-message: imaginary-update automated change
signoff: true
title: Imaginary update
body: Automated Imaginary container update
labels: dependencies, 3. to review
milestone: next
branch: imaginary-container-update