From bb7f06068b691cdc7511c2b69a5da5a0653de23e Mon Sep 17 00:00:00 2001 From: Julien Reichardt Date: Sat, 29 Oct 2022 12:02:31 +0200 Subject: [PATCH] Remove if condition in workflow --- .github/workflows/update.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 70c5525..934b0b9 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -2,7 +2,7 @@ name: Check for updates on: schedule: # for scheduling to work this file must be in the default branch - cron: "30 0 * * *" # Every day at 00:30 - - cron: "30 1 * * *" # merge the next hour + - cron: "30 1 * * *" workflow_dispatch: # can be manually dispatched under GitHub's "Actions" tab jobs: @@ -10,9 +10,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Prevent the retrieval of newer commits - if: github.event.schedule == '30 1 * * *' - run: "sed -i '/^ branch: master/d' net.rpcs3.RPCS3.yaml" - uses: docker://ghcr.io/flathub/flatpak-external-data-checker:latest env: GIT_AUTHOR_NAME: Flatpak External Data Checker