mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 7.0.9 to 7.0.11.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](84ae59a2cd...22a9089034)
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-version: 7.0.11
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
28 lines
880 B
YAML
28 lines
880 B
YAML
name: Update Yaml files
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 12 * * *'
|
|
|
|
jobs:
|
|
update-yaml:
|
|
name: update yaml files
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6.0.1
|
|
- name: update yaml files
|
|
run: |
|
|
sudo bash manual-install/update-yaml.sh
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7
|
|
with:
|
|
commit-message: Yaml updates
|
|
signoff: true
|
|
title: Yaml updates
|
|
body: Automated yaml updates for the docker-compose files. Should only be merged shortly before the next latest release.
|
|
labels: dependencies, 3. to review
|
|
milestone: next
|
|
branch: aio-yaml-update
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|