Skip to content

Commit 38c2ddb

Browse files
authored
fix(#8): remove skip-duplicate-actions in github workflows - PR #9
2 parents 0beffcf + 16aedb5 commit 38c2ddb

File tree

2 files changed

+0
-38
lines changed

2 files changed

+0
-38
lines changed

.github/workflows/rust-host.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,7 @@ name: rust-host
22
on: [push, pull_request]
33

44
jobs:
5-
# https://github.com/marketplace/actions/skip-duplicate-actions
6-
pre_job:
7-
# continue-on-error: true # Uncomment once integration is finished
8-
runs-on: ubuntu-latest
9-
# Map a step output to a job output
10-
outputs:
11-
should_skip: ${{ steps.skip_check.outputs.should_skip }}
12-
steps:
13-
- id: skip_check
14-
uses: fkirc/skip-duplicate-actions@v5
15-
with:
16-
# All of these options are optional, so you can remove them if you are happy with the defaults
17-
# Skip a workflow run if the same workflow is already running
18-
concurrent_skipping: 'same_content_newer'
19-
skip_after_successful_duplicate: 'true'
20-
paths_ignore: '["**/README.md"]'
21-
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
225
build-and-test:
23-
needs: pre_job
24-
if: needs.pre_job.outputs.should_skip != 'true'
256
runs-on: ubuntu-latest
267
steps:
278
- name: Set variables based on OS and architecture for just dl-wasi-sdk

.github/workflows/web-host.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,7 @@ name: web-host
22
on: [push, pull_request]
33

44
jobs:
5-
# https://github.com/marketplace/actions/skip-duplicate-actions
6-
pre_job:
7-
# continue-on-error: true # Uncomment once integration is finished
8-
runs-on: ubuntu-latest
9-
# Map a step output to a job output
10-
outputs:
11-
should_skip: ${{ steps.skip_check.outputs.should_skip }}
12-
steps:
13-
- id: skip_check
14-
uses: fkirc/skip-duplicate-actions@v5
15-
with:
16-
# All of these options are optional, so you can remove them if you are happy with the defaults
17-
# Skip a workflow run if the same workflow is already running
18-
concurrent_skipping: 'same_content_newer'
19-
skip_after_successful_duplicate: 'true'
20-
paths_ignore: '["**/README.md"]'
21-
do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]'
225
build:
23-
needs: pre_job
24-
if: needs.pre_job.outputs.should_skip != 'true'
256
runs-on: ubuntu-latest
267
steps:
278
- name: Set variables based on OS and architecture for just dl-wasi-sdk

0 commit comments

Comments
 (0)