mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-16 03:56:02 +08:00
9c4917165e
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
833 B
YAML
28 lines
833 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@v4
|
|
- name: update yaml files
|
|
run: |
|
|
sudo bash manual-install/update-yaml.sh
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v5
|
|
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 }}
|