From 16aedb5415b4a6122ac058b482283934ec4707a8 Mon Sep 17 00:00:00 2001 From: Christophe Rosset Date: Thu, 24 Jul 2025 09:33:14 +0200 Subject: [PATCH] fix(#8): remove skip-duplicate-actions in github workflows --- .github/workflows/rust-host.yml | 19 ------------------- .github/workflows/web-host.yml | 19 ------------------- 2 files changed, 38 deletions(-) diff --git a/.github/workflows/rust-host.yml b/.github/workflows/rust-host.yml index 13ec13e..2385602 100644 --- a/.github/workflows/rust-host.yml +++ b/.github/workflows/rust-host.yml @@ -2,26 +2,7 @@ name: rust-host on: [push, pull_request] jobs: - # https://github.com/marketplace/actions/skip-duplicate-actions - pre_job: - # continue-on-error: true # Uncomment once integration is finished - runs-on: ubuntu-latest - # Map a step output to a job output - outputs: - should_skip: ${{ steps.skip_check.outputs.should_skip }} - steps: - - id: skip_check - uses: fkirc/skip-duplicate-actions@v5 - with: - # All of these options are optional, so you can remove them if you are happy with the defaults - # Skip a workflow run if the same workflow is already running - concurrent_skipping: 'same_content_newer' - skip_after_successful_duplicate: 'true' - paths_ignore: '["**/README.md"]' - do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' build-and-test: - needs: pre_job - if: needs.pre_job.outputs.should_skip != 'true' runs-on: ubuntu-latest steps: - name: Set variables based on OS and architecture for just dl-wasi-sdk diff --git a/.github/workflows/web-host.yml b/.github/workflows/web-host.yml index 3fa0ec3..8ff5e89 100644 --- a/.github/workflows/web-host.yml +++ b/.github/workflows/web-host.yml @@ -2,26 +2,7 @@ name: web-host on: [push, pull_request] jobs: - # https://github.com/marketplace/actions/skip-duplicate-actions - pre_job: - # continue-on-error: true # Uncomment once integration is finished - runs-on: ubuntu-latest - # Map a step output to a job output - outputs: - should_skip: ${{ steps.skip_check.outputs.should_skip }} - steps: - - id: skip_check - uses: fkirc/skip-duplicate-actions@v5 - with: - # All of these options are optional, so you can remove them if you are happy with the defaults - # Skip a workflow run if the same workflow is already running - concurrent_skipping: 'same_content_newer' - skip_after_successful_duplicate: 'true' - paths_ignore: '["**/README.md"]' - do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' build: - needs: pre_job - if: needs.pre_job.outputs.should_skip != 'true' runs-on: ubuntu-latest steps: - name: Set variables based on OS and architecture for just dl-wasi-sdk