From 61e23dd6c6b0bb3bf2a1ef5dcefd668bf1268f0d Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Thu, 17 Dec 2020 22:24:13 +0200 Subject: [PATCH] CI: experimental support for automatically checking updates, building them and committing No push to main repo is performed currently. --- .github/workflows/package_updates.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/package_updates.yml b/.github/workflows/package_updates.yml index c59d73b8f..c9aa4ba45 100644 --- a/.github/workflows/package_updates.yml +++ b/.github/workflows/package_updates.yml @@ -2,7 +2,7 @@ name: Package updates on: schedule: - - cron: '0 */6 * * *' + - cron: '0 */1 * * *' jobs: update: @@ -13,5 +13,9 @@ jobs: - name: Process package updates env: GITHUB_API_TOKEN: ${{ secrets.GH_API_KEY }} + BUILD_PACKAGES: "true" + GIT_COMMIT_PACKAGES: "true" run: | + git config --global user.name "Termux Github Actions" + git config --global user.email "leonid.pliushch@gmail.com" bash ./scripts/updates/check-updates.sh