mirror of
https://github.com/YunoHost-Apps/bookstack_ynh.git
synced 2024-09-03 18:16:02 +02:00
* 22.06
* Auto-update README
* Update manifest.json
* Fix
* 22.06.1
* Auto-update README
* Update upgrade
* 22.06.2
* Auto-update README
* Update app.src
* Update DESCRIPTION.md
* Auto-update README
* Update nginx.conf
* Update .env.example.complete
* Update .env.example.complete
* Update install
* Revert "Update install"
This reverts commit e43db7a0de
.
* 22.07.1 (#80)
* 22.07.1
* Auto-update README
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
* Auto-update README
* Auto-update README
* 22.07.2 (#82)
* 22.07.2
* Auto-update README
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
* 22.07.3 (#84)
* 22.07.3
* Auto-update README
* Update manifest.json
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
* Update upgrade
* 22.09 (#88)
* 22.09
* Auto-update README
* Update app.src
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
* 22.09.1
* Auto-update README
* upgrade composer
* upgrade config (#91)
* Update manifest.json
* Auto-update README
* Update upgrade
* 22.10
* Auto-update README
* 22.10.1
* 22.11
* Auto-update README
* 22.11.1
* Auto-update README
* Upgrade to version 22.11.1 (#100)
* Upgrade to v22.11.1
* Auto-update README
Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com>
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com>
* Fis php (#102)
* Update upgrade
* reorder script
* Update manifest.json
* Auto-update README
* Update restore
* Fix size
* Auto-update README
* Update DESCRIPTION_fr.md
* Auto-update README
* Fix
* 23.01
* Auto-update README
* PHP8.1
* 23.01.1
* Auto-update README
* Upgrade auto-updater (#108)
* [autopatch] Upgrade auto-updater
* Auto-update README
---------
Co-authored-by: tituspijean <titus@pijean.ovh>
* V2 (#107)
* Auto-update README
* v2
* Fix
* Update manifest.toml
* Update manifest.toml
* Fix
* Create post_install.md
* Fix
* Auto-update README
* Update install
* Update config_panel.toml
* Update manifest.toml
* Update _common.sh
* Update tests.toml
* Add post
* Update manifest.toml
* Update remove
* Update install
* Update _common.sh
* Fix
* Update change_url
* Update upgrade
* Auto-update README
* cleaning
* remove PHP version
* Update _common.sh
* Update manifest.toml
* Fix
* fix
* Update manifest.toml
* Update manifest.toml
* Update upgrade
* Update manifest.toml
* 23.02
* Auto-update README
* Update change_url
* Update change_url
* Update upgrade
---------
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
---------
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com>
Co-authored-by: tituspijean <titus@pijean.ovh>
50 lines
2 KiB
YAML
50 lines
2 KiB
YAML
# This workflow allows GitHub Actions to automagically update your app whenever a new upstream release is detected.
|
|
# You need to enable Actions in your repository settings, and fetch this Action from the YunoHost-Apps organization.
|
|
# This file should be enough by itself, but feel free to tune it to your needs.
|
|
# It calls updater.sh, which is where you should put the app-specific update steps.
|
|
name: Check for new upstream releases
|
|
on:
|
|
# Allow to manually trigger the workflow
|
|
workflow_dispatch:
|
|
# Run it every day at 6:00 UTC
|
|
schedule:
|
|
- cron: '0 6 * * *'
|
|
jobs:
|
|
updater:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fetch the source code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Run the updater script
|
|
id: run_updater
|
|
run: |
|
|
# Setting up Git user
|
|
git config --global user.name 'yunohost-bot'
|
|
git config --global user.email 'yunohost-bot@users.noreply.github.com'
|
|
# Run the updater script
|
|
/bin/bash .github/workflows/updater.sh
|
|
- name: Commit changes
|
|
id: commit
|
|
if: ${{ env.PROCEED == 'true' }}
|
|
run: |
|
|
git commit -am "Upgrade to v$VERSION"
|
|
- name: Create Pull Request
|
|
id: cpr
|
|
if: ${{ env.PROCEED == 'true' }}
|
|
uses: peter-evans/create-pull-request@v4
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: Update to version ${{ env.VERSION }}
|
|
committer: 'yunohost-bot <yunohost-bot@users.noreply.github.com>'
|
|
author: 'yunohost-bot <yunohost-bot@users.noreply.github.com>'
|
|
signoff: false
|
|
base: testing
|
|
branch: ci-auto-update-v${{ env.VERSION }}
|
|
delete-branch: true
|
|
title: 'Upgrade to version ${{ env.VERSION }}'
|
|
body: |
|
|
Upgrade to v${{ env.VERSION }}
|
|
[See upstream release page](https://github.com/${{ env.REPO }}/releases/tag/v${{ env.VERSION }})
|
|
draft: false
|