From f28eda7d2f40c4ac64df01d6caf985f23e91cdfb Mon Sep 17 00:00:00 2001 From: Rakan Al-Huneiti Date: Tue, 30 Apr 2024 23:53:09 +0300 Subject: [PATCH] Skip deny and sys_tx_keccak if draft (#471) --- .github/workflows/checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 853dec536..cafe95358 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -99,6 +99,7 @@ jobs: deny: runs-on: ubuntu-latest + if: github.event.pull_request.draft == false steps: - uses: actions/checkout@v4 - name: Run cargo-deny @@ -184,6 +185,7 @@ jobs: sys_tx_keccak: runs-on: ubuntu-latest + if: github.event.pull_request.draft == false steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4