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 f5d14f0 commit c5b8750Copy full SHA for c5b8750
.github/workflows/ci.yml
@@ -2,9 +2,9 @@ name: CI
2
3
on:
4
push:
5
- branches: [ main ]
6
pull_request:
7
+ workflow_call:
+
8
9
env:
10
GO_VERSION: '1.25'
.github/workflows/docker.yml
@@ -4,8 +4,6 @@ on:
branches: [ main ]
tags: [ 'v*' ]
- pull_request:
11
REGISTRY: ghcr.io
@@ -18,7 +16,7 @@ jobs:
18
16
build-and-push:
19
17
needs: ci
20
runs-on: ubuntu-latest
21
- if: github.ref == 'refs/heads/main'
+ if: github.ref == 'refs/heads/main' && github.event_name == 'push'
22
permissions:
23
contents: read
24
packages: write
0 commit comments