Skip to content

Commit 893a349

Browse files
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.
1 parent bf4f7a4 commit 893a349

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/rabbitmq_peer_discovery_aws.yaml

Lines changed: 6 additions & 4 deletions
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)