From b6b8c99ff69baeb9777263d5e8d56c21673b69fd Mon Sep 17 00:00:00 2001 From: Krakinou Date: Sat, 17 Dec 2022 13:17:17 +0100 Subject: [PATCH 1/3] Init auto-updater --- .github/workflows/updater.sh | 18 +------------ .github/workflows/updater.yml | 49 +++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 17 deletions(-) create mode 100644 .github/workflows/updater.yml diff --git a/.github/workflows/updater.sh b/.github/workflows/updater.sh index 72eb5cb..05f52a9 100755 --- a/.github/workflows/updater.sh +++ b/.github/workflows/updater.sh @@ -1,17 +1,5 @@ #!/bin/bash -#================================================= -# PACKAGE UPDATING HELPER -#================================================= - -# This script is meant to be run by GitHub Actions -# The YunoHost-Apps organisation offers a template Action to run this script periodically -# Since each app is different, maintainers can adapt its contents so as to perform -# automatic actions when a new upstream release is detected. - -# Remove this exit command when you are ready to run this Action -exit 1 - #================================================= # FETCHING LATEST RELEASE AND ITS ASSETS #================================================= @@ -64,15 +52,11 @@ for asset_url in ${assets[@]}; do echo "Handling asset at $asset_url" # Assign the asset to a source file in conf/ directory -# Here we base the source file name upon a unique keyword in the assets url (admin vs. update) # Leave $src empty to ignore the asset case $asset_url in - *"admin"*) + *"Source"*) src="app" ;; - *"update"*) - src="app-upgrade" - ;; *) src="" ;; diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml new file mode 100644 index 0000000..fd6ed60 --- /dev/null +++ b/.github/workflows/updater.yml @@ -0,0 +1,49 @@ +# 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@v2 + 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@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: Update to version ${{ env.VERSION }} + committer: 'yunohost-bot ' + author: 'yunohost-bot ' + signoff: false + branch: ci-auto-update-v${{ env.VERSION }} + base: testing + delete-branch: true + title: 'Upgrade to version ${{ env.VERSION }}' + body: | + Upgrade to v${{ env.VERSION }} + draft: false From 9a2016b01cb0da191b339f65398854a82a14e3fd Mon Sep 17 00:00:00 2001 From: Krakinou Date: Sat, 17 Dec 2022 13:28:00 +0100 Subject: [PATCH 2/3] Temp : cron every 5 min --- .github/workflows/updater.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index fd6ed60..46c416c 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -7,8 +7,10 @@ on: # Allow to manually trigger the workflow workflow_dispatch: # Run it every day at 6:00 UTC +# schedule: +# - cron: '0 6 * * *' schedule: - - cron: '0 6 * * *' + - cron: '*/5 * * * *' jobs: updater: runs-on: ubuntu-latest @@ -41,7 +43,7 @@ jobs: author: 'yunohost-bot ' signoff: false branch: ci-auto-update-v${{ env.VERSION }} - base: testing + base: set-auto-updater delete-branch: true title: 'Upgrade to version ${{ env.VERSION }}' body: | From 65002482261546305342f10e53735ebd2a3592fc Mon Sep 17 00:00:00 2001 From: Krakinou Date: Sat, 17 Dec 2022 13:31:45 +0100 Subject: [PATCH 3/3] revert to testing --- .github/workflows/updater.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index 46c416c..2e4a295 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -43,7 +43,7 @@ jobs: author: 'yunohost-bot ' signoff: false branch: ci-auto-update-v${{ env.VERSION }} - base: set-auto-updater + base: testing delete-branch: true title: 'Upgrade to version ${{ env.VERSION }}' body: |