From 9577d2fa8521af0934d7c2ff7c465e1c6668c655 Mon Sep 17 00:00:00 2001
From: David Bauer <mail@david-bauer.net>
Date: Sat, 16 Sep 2023 00:27:59 +0200
Subject: [PATCH] workflow: don't push Docker container on PR (#2984)

The docker container on PR action is broken in case the PR is not opened
within the Gluon project.

Remove the build on PR so the pipeline does not fail for third party
PRs.

Signed-off-by: David Bauer <mail@david-bauer.net>
---
 .github/workflows/build-container.yml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/.github/workflows/build-container.yml b/.github/workflows/build-container.yml
index acca44d6a..f1f5cb178 100644
--- a/.github/workflows/build-container.yml
+++ b/.github/workflows/build-container.yml
@@ -7,9 +7,6 @@ on:
       - 'master'
     tags:
       - 'v*'
-  pull_request:
-    branches:
-      - 'master'
 
 env:
   REGISTRY: ghcr.io
-- 
GitLab