mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-30 23:40:08 +00:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
32 lines
1000 B
YAML
32 lines
1000 B
YAML
# SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: update yaml files
|
|
run: |
|
|
sudo bash manual-install/update-yaml.sh
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # 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 }}
|