Remove if condition in workflow

This commit is contained in:
Julien Reichardt 2022-10-29 12:02:31 +02:00
parent 07d94271cb
commit bb7f06068b

View file

@ -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