@@ -17,26 +17,26 @@ concurrency:
17
17
cancel-in-progress : true
18
18
19
19
jobs :
20
- check-right -permissions :
21
- name : Check Right Permissions
20
+ check-access -permissions :
21
+ name : Check Access Permissions
22
22
runs-on : ubuntu-latest
23
23
24
24
steps :
25
- - name : Check Right Permissions To Trigger This
26
- id : check_right_permissions
25
+ - name : Check Access Permissions To Trigger This
26
+ id : check_access_permissions
27
27
uses : stacks-network/actions/team-membership@main
28
28
with :
29
29
username : ${{ github.actor }}
30
30
team : ' blockchain-team'
31
31
GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
32
32
33
33
outputs :
34
- ignore_timeout : ${{ steps.check_right_permissions .outputs.is_team_member == 'true' }}
34
+ ignore_timeout : ${{ steps.check_access_permissions .outputs.is_team_member == 'true' && github.event_name == 'workflow_dispatch ' }}
35
35
36
36
# Check and output whether to run big (`stacks-node`/`stackslib`) or small (others) packages with or without shards
37
37
check-big-packages-and-shards :
38
38
name : Check Packages and Shards
39
- needs : check-right -permissions
39
+ needs : check-access -permissions
40
40
41
41
runs-on : ubuntu-latest
42
42
54
54
- id : check_packages_and_shards
55
55
uses : stacks-network/actions/stacks-core/mutation-testing/check-packages-and-shards@main
56
56
with :
57
- ignore_timeout : ${{ needs.check-right -permissions.outputs.ignore_timeout }}
57
+ ignore_timeout : ${{ needs.check-access -permissions.outputs.ignore_timeout }}
58
58
59
59
# Mutation testing - Execute on PR on small packages that have functions modified (normal run, no shards)
60
60
pr-differences-mutants-small-normal :
0 commit comments