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 d520547 commit 2dc6049Copy full SHA for 2dc6049
1 file changed
.github/workflows/docker-ci.yml
@@ -2,8 +2,12 @@ name: Docker CI (v1 + v2)
2
3
on:
4
push:
5
+ # Only run full CI on pushes to main (publishes/metrics). Running on
6
+ # every branch push plus pull_request creates duplicate runs when a PR
7
+ # receives new commits because GitHub emits both push and pull_request
8
+ # events for the same push. Restrict push to main to avoid that.
9
branches:
- - '**'
10
+ - 'main'
11
paths-ignore:
12
- '**.md'
13
- 'docs/**'
0 commit comments