File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change 10
10
paths :
11
11
- ' **.rs'
12
12
workflow_dispatch :
13
- inputs :
14
- ignore_timeout :
15
- description : " Ignore mutants timeout limit"
16
- required : false
17
- type : choice
18
- options :
19
- - true
20
- default : ' true'
21
13
22
14
concurrency :
23
15
group : pr-differences-${{ github.head_ref || github.ref || github.run_id }}
38
30
team : ' blockchain-team'
39
31
GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
40
32
41
- - name : Fail if the user does not have the right permissions
42
- if : ${{ inputs.ignore_timeout == 'true' && steps.check_right_permissions.outputs.is_team_member != 'true' }}
43
- run : exit 1
33
+ outputs :
34
+ ignore_timeout : ${{ steps.check_right_permissions.outputs.is_team_member == 'true' }}
44
35
45
36
# Check and output whether to run big (`stacks-node`/`stackslib`) or small (others) packages with or without shards
46
37
check-big-packages-and-shards :
63
54
- id : check_packages_and_shards
64
55
uses : stacks-network/actions/stacks-core/mutation-testing/check-packages-and-shards@main
65
56
with :
66
- ignore_timeout : ${{ inputs .ignore_timeout }}
57
+ ignore_timeout : ${{ needs.check-right-permissions.outputs .ignore_timeout }}
67
58
68
59
# Mutation testing - Execute on PR on small packages that have functions modified (normal run, no shards)
69
60
pr-differences-mutants-small-normal :
You can’t perform that action at this time.
0 commit comments