Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-k0 committed Jun 28, 2024
1 parent b3c7308 commit a25c5a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows-source/schedule-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: Cut RC
runs-on: ubuntu-latest
timeout-minutes: 30
if: ${{ github.event_name == 'schedule' }} || ${{ (github.event_name == 'workflow_dispatch') && (github.ref == 'refs/heads/master') }}
if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master')
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -70,7 +70,7 @@ jobs:
<<: *dind-large-setup
timeout-minutes: 720 # 12 hours
# TODO: disable in GitLab before enabling here
if: ${{ && false }}
if: ${{ false }}
strategy:
matrix:
targets: ["//rs/crypto/...", "//rs/state_manager/..."]
Expand Down

0 comments on commit a25c5a6

Please sign in to comment.