2022-05-09 07:47:54 +08:00
|
|
|
name: Update Yaml files
|
|
|
|
|
|
|
|
on:
|
2022-05-13 19:26:12 +08:00
|
|
|
workflow_dispatch:
|
2022-05-11 06:52:54 +08:00
|
|
|
schedule:
|
|
|
|
- cron: '00 12 * * *'
|
2022-05-09 07:47:54 +08:00
|
|
|
|
|
|
|
jobs:
|
2023-06-06 16:28:19 +08:00
|
|
|
update-yaml:
|
2022-05-09 07:47:54 +08:00
|
|
|
name: update yaml files
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-09-04 20:29:01 +08:00
|
|
|
uses: actions/checkout@v4
|
2022-05-09 07:47:54 +08:00
|
|
|
- name: update yaml files
|
|
|
|
run: |
|
|
|
|
sudo bash manual-install/update-yaml.sh
|
2022-05-11 06:52:54 +08:00
|
|
|
- name: Create Pull Request
|
2024-01-31 21:03:32 +08:00
|
|
|
uses: peter-evans/create-pull-request@v6
|
2022-05-09 07:47:54 +08:00
|
|
|
with:
|
2022-05-11 06:52:54 +08:00
|
|
|
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.
|
2023-04-27 21:16:58 +08:00
|
|
|
labels: dependencies, 3. to review
|
2022-05-11 06:52:54 +08:00
|
|
|
milestone: next
|
|
|
|
branch: aio-yaml-update
|
2023-01-06 02:32:38 +08:00
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|