mirror of
https://github.com/YunoHost-Apps/scrutiny_ynh.git
synced 2024-09-03 20:16:24 +02:00
Merge pull request #10 from YunoHost-Apps/master-promotion
Upgrade master from testing
This commit is contained in:
commit
e0c9b8171e
5 changed files with 29 additions and 4 deletions
26
.github/workflows/update_master.yml
vendored
Normal file
26
.github/workflows/update_master.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: Create master promotion pull request
|
||||||
|
on:
|
||||||
|
# Allow to manually trigger the workflow
|
||||||
|
workflow_dispatch:
|
||||||
|
# Run it when when someone pushes to testing
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- testing
|
||||||
|
jobs:
|
||||||
|
masterPromotion:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: master
|
||||||
|
- name: Reset promotion branch
|
||||||
|
run: |
|
||||||
|
git fetch origin testing:testing
|
||||||
|
git reset --hard testing
|
||||||
|
- name: Create Pull Request
|
||||||
|
uses: peter-evans/create-pull-request@v5
|
||||||
|
with:
|
||||||
|
branch: master-promotion
|
||||||
|
title: 'Upgrade master from testing'
|
||||||
|
body: |
|
||||||
|
Upgrade master from testing
|
1
.github/workflows/updater.yml
vendored
1
.github/workflows/updater.yml
vendored
|
@ -51,4 +51,5 @@ jobs:
|
||||||
title: 'Upgrade to version ${{ env.VERSION }}'
|
title: 'Upgrade to version ${{ env.VERSION }}'
|
||||||
body: |
|
body: |
|
||||||
Upgrade to v${{ env.VERSION }}
|
Upgrade to v${{ env.VERSION }}
|
||||||
|
[See upstream release page](https://github.com/${{ env.REPO }}/releases/tag/v${{ env.VERSION }})
|
||||||
draft: false
|
draft: false
|
||||||
|
|
|
@ -45,7 +45,6 @@ Scrutiny is a simple but focused application, with a couple of core features:
|
||||||
|
|
||||||
* Official admin documentation: <https://github.com/AnalogJ/scrutiny/tree/master/docs>
|
* Official admin documentation: <https://github.com/AnalogJ/scrutiny/tree/master/docs>
|
||||||
* Upstream app code repository: <https://github.com/AnalogJ/scrutiny>
|
* Upstream app code repository: <https://github.com/AnalogJ/scrutiny>
|
||||||
* YunoHost documentation for this app: <https://yunohost.org/app_scrutiny>
|
|
||||||
* Report a bug: <https://github.com/YunoHost-Apps/scrutiny_ynh/issues>
|
* Report a bug: <https://github.com/YunoHost-Apps/scrutiny_ynh/issues>
|
||||||
|
|
||||||
## Developer info
|
## Developer info
|
||||||
|
|
|
@ -45,7 +45,6 @@ Scrutiny is a simple but focused application, with a couple of core features:
|
||||||
|
|
||||||
* Documentation officielle de l’admin : <https://github.com/AnalogJ/scrutiny/tree/master/docs>
|
* Documentation officielle de l’admin : <https://github.com/AnalogJ/scrutiny/tree/master/docs>
|
||||||
* Dépôt de code officiel de l’app : <https://github.com/AnalogJ/scrutiny>
|
* Dépôt de code officiel de l’app : <https://github.com/AnalogJ/scrutiny>
|
||||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_scrutiny>
|
|
||||||
* Signaler un bug : <https://github.com/YunoHost-Apps/scrutiny_ynh/issues>
|
* Signaler un bug : <https://github.com/YunoHost-Apps/scrutiny_ynh/issues>
|
||||||
|
|
||||||
## Informations pour les développeurs
|
## Informations pour les développeurs
|
||||||
|
|
|
@ -15,10 +15,10 @@ code = "https://github.com/AnalogJ/scrutiny"
|
||||||
fund = "https://paypal.me/analogj/usd10"
|
fund = "https://paypal.me/analogj/usd10"
|
||||||
|
|
||||||
[integration]
|
[integration]
|
||||||
yunohost = ">= 11.1.6"
|
yunohost = ">= 11.2"
|
||||||
architectures = ["amd64", "arm64"]
|
architectures = ["amd64", "arm64"]
|
||||||
multi_instance = false
|
multi_instance = false
|
||||||
ldap = "not_relevant"
|
ldap = "not_relevant"
|
||||||
sso = "not_relevant"
|
sso = "not_relevant"
|
||||||
disk = "50M"
|
disk = "50M"
|
||||||
ram.build = "50M"
|
ram.build = "50M"
|
||||||
|
|
Loading…
Reference in a new issue