Skip to content

Commit 4cbc58d

Browse files
michaelklishinmergify[bot]
authored andcommitted
Reduce AWS peer discovery workflow run rate
By running it * On push, when relevant code paths change * Every Monday morning The peer discovery subsystem does not change particularly often, and this plugin in particular does not. Nonetheless, we currently run it for every push unconditionally. (cherry picked from commit 893a349) (cherry picked from commit ac2bbe2)
1 parent 78a31ec commit 4cbc58d

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/rabbitmq_peer_discovery_aws.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
name: Peer Discovery AWS Integration Test
22
on:
33
push:
4-
paths-ignore:
5-
- '.github/workflows/secondary-umbrella.yaml'
6-
- '.github/workflows/update-elixir-patches.yaml'
7-
- '.github/workflows/update-otp-patches.yaml'
4+
paths:
5+
- "deps/rabbitmq_peer_discovery_aws/**"
6+
- "deps/rabbitmq_peer_discovery_common/**"
7+
- "deps/rabbit/src/rabbit_peer_discovery.erl"
8+
schedule:
9+
- cron: "4 0 * * MON"
810
workflow_dispatch:
911
concurrency:
1012
group: ${{ github.workflow }}-${{ github.ref_name }}

0 commit comments

Comments
 (0)