We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 766d196 commit ea53f67Copy full SHA for ea53f67
.github/workflows/interop.yml
@@ -2,6 +2,9 @@ name: interop
2
on:
3
schedule:
4
- cron: "0 */8 * * *" # every 8h
5
+ pull_request:
6
+ branches:
7
+ - master
8
9
# Cache key for caching the Wireshark build.
10
# To trigger a rebuild of Wireshark increment this value.
@@ -87,8 +90,14 @@ jobs:
87
90
echo "::set-output name=clients::$CLIENTS"
88
91
- name: Determine Docker images
89
92
id: set-images
93
+ env:
94
+ EVENT_NAME: ${{ github.event_name }}
95
run: |
- IMAGES=$(jq -c 'keys_unsorted' implementations.json)
96
+ if [[ "$EVENT_NAME"=="pull_request" ]]; then
97
+ IMAGES="['quic-go','quant']"
98
+ else
99
+ IMAGES=$(jq -c 'keys_unsorted' implementations.json)
100
+ fi
101
echo $IMAGES
102
echo "::set-output name=images::$IMAGES"
103
docker-pull-tools:
0 commit comments