File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 12
12
branches :
13
13
- main
14
14
- release*
15
+ merge_group :
16
+ types : [checks_requested]
17
+ workflow_dispatch :
15
18
16
19
permissions :
17
20
contents : read
73
76
echo "Please run './hack/gen_kuadrant_custom_resource_state.sh' locally and check in the changes."
74
77
exit 1
75
78
fi
79
+
80
+ required-checks :
81
+ name : continuous-integration Required Checks
82
+ # This check adds a list of checks to one job to simplify adding settings to the repo.
83
+ # If a new check is added in this file, and it should be retested on entry to the merge queue,
84
+ # it needs to be added to the list below aka needs: [ existing check 1, existing check 2, new check ].
85
+ needs : [ ci-e2e-tests, check-bundles, check-kuadrant-custom-resource-state]
86
+ if : always()
87
+ runs-on : ubuntu-latest
88
+ steps :
89
+ - uses : actions/checkout@v4
90
+ - run : echo '${{ toJSON(needs) }}' | jq -e 'all(.[]; .result == "success" or .result == "skipped")'
You can’t perform that action at this time.
0 commit comments