mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 21:16:52 +00:00
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 7.0.11 to 8.1.0.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](22a9089034...c0f553fe54)
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-version: 8.1.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
33 lines
1 KiB
YAML
33 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
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- 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@c0f553fe549906ede9cf27b5156039d195d2ece0 # 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
|