From a00a26f1f7af8b165c07857caba51f2d04be81ef Mon Sep 17 00:00:00 2001 From: Honza Horak Date: Mon, 2 Nov 2020 16:49:45 +0100 Subject: [PATCH 1/2] Do not use module when we have f33 in base --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ddcf19..006e042 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,6 @@ COPY root/usr/libexec/fix-permissions /usr/libexec/fix-permissions RUN INSTALL_PKGS="rsync tar gettext bind-utils postgresql-server postgresql-contrib nss_wrapper " && \ INSTALL_PKGS+="findutils xz" && \ INSTALL_PKGS+=" pgaudit" && \ - dnf -y module enable postgresql:12 && \ dnf -y --setopt=tsflags=nodocs install $INSTALL_PKGS && \ rpm -V $INSTALL_PKGS && \ dnf clean all && \ From 6a69db45ebe1847bc4e27f44a9eef8713ca18831 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Tue, 15 Jun 2021 15:24:42 +0200 Subject: [PATCH 2/2] Add support for sync upstream to downstream Signed-off-by: Petr "Stone" Hracek --- bot-cfg.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 bot-cfg.yml diff --git a/bot-cfg.yml b/bot-cfg.yml new file mode 100644 index 0000000..0e96344 --- /dev/null +++ b/bot-cfg.yml @@ -0,0 +1,27 @@ +version: "1" + +betka: + # is betka enabled for this repository + # optional - defaults to false + enabled: true + + # optional + notifications: + email_addresses: ["phracek@redhat.com", "pkubat@redhat.com", "hhorak@redhat.com"] + + # Specify if master branch in upstream repository is synced + master_checker: true + # Should pull requests be synced? + # optional + pr_checker: false + # Either 'upstream_branch_name' or 'upstream_git_path' has to be specified + # Branch name which is used for sync + upstream_branch_name: master + # Path to directory with dockerfile withing upstream repository + upstream_git_path: "12" + # Github comment message to enforce sync of a pull request + # required if pr_checker is true otherwise optional + pr_comment_message: "[test]" + # optional + image_url: quay.io/rhscl/cwt-generator +