From d6cef0eed51ecf11aa6ab70ee44a5b776778d647 Mon Sep 17 00:00:00 2001 From: Gianmarco Fraccaroli Date: Mon, 22 Jul 2024 13:42:02 +0200 Subject: [PATCH] wip --- .github/workflows/pre-genesis-transactions-checks.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pre-genesis-transactions-checks.yml b/.github/workflows/pre-genesis-transactions-checks.yml index 9220c3f..a98e0ce 100644 --- a/.github/workflows/pre-genesis-transactions-checks.yml +++ b/.github/workflows/pre-genesis-transactions-checks.yml @@ -54,7 +54,7 @@ jobs: if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: | source .venv/bin/activate - poetry run python3 scripts/validate-pr.py + poetry run python scripts/validate-pr.py merge-check: runs-on: ubuntu-latest @@ -86,7 +86,7 @@ jobs: if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: | source .venv/bin/activate - poetry run python3 scripts/validate-pr.py + poetry run python scripts/validate-pr.py main: if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} @@ -117,7 +117,7 @@ jobs: if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: | source .venv/bin/activate - poetry run python3 scripts/merge-pr.py + poetry run python scripts/merge-pr.py can_enqueue: needs: [pr-check]