forked from trilinos/Trilinos
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 982 Bytes
/
no-dupe-workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Test fixing duplicate workflows
on:
pull_request:
types:
- opened
- synchronize
- labeled
pull_request_review:
types:
- submitted
branches:
- master
- develop
workflow_dispatch:
jobs:
pre-checks:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
skip_after_successful_duplicate: 'true'
do_not_skip: ''
build-and-test:
name: Build and test changes
needs: pre-checks
if: needs.pre-checks.outputs.should_skip != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
pwd
ls
echo "pretending to build some cool code!"
sleep 3s
echo "finished building cool code!"