From 130a51365d571ae6b02174275d665207e037dbde Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Tue, 19 Mar 2019 20:52:49 +0100 Subject: [PATCH 1/3] Create stale.yml --- .github/stale.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000..4482002 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,20 @@ +--- +only: issues +limitPerRun: 30 +daysUntilStale: 45 +daysUntilClose: 60 +exemptLabels: + - bug + - In progress + - planned + - enhancement +exemptProjects: true +exemptMilestones: true +staleLabel: stale +markComment: > + Currently WordOps team doesn't have enough capacity to work on this issue. + We will be more than glad to accept a pull request with a solution to problem described here. + This issue will be closed after another 60 days of inactivity. +closeComment: > + This issue has been automatically closed due to extended period of inactivity. + Please reopen if it is still valid. Thank you for your contributions. From 159e5d31834b228cbe16bde79d11d5eec4a98774 Mon Sep 17 00:00:00 2001 From: VirtuBox Date: Tue, 19 Mar 2019 20:55:10 +0100 Subject: [PATCH 2/3] Create PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..dbc0a7a --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ + + +##### Summary + +##### Additional Information From 5a5158afc5a3c9adb04ef8bc914f2a14769c8cbb Mon Sep 17 00:00:00 2001 From: Vikas Kapadiya Date: Wed, 20 Mar 2019 02:12:45 +0530 Subject: [PATCH 3/3] [Fix] 64 bit Server doesn't support architecture 'i386' for MariaDB Repo [Fix] 64 bit Server doesn't support architecture 'i386' for MariaDB Repo --- wo/core/variables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wo/core/variables.py b/wo/core/variables.py index a595416..ab2eb2b 100644 --- a/wo/core/variables.py +++ b/wo/core/variables.py @@ -142,11 +142,11 @@ class WOVariables(): # MySQL repo and packages if wo_platform_distro == 'ubuntu': - wo_mysql_repo = ("deb [arch=amd64,i386,ppc64el] http://sfo1.mirrors.digitalocean.com/mariadb/repo/" + wo_mysql_repo = ("deb [arch=amd64,ppc64el] http://sfo1.mirrors.digitalocean.com/mariadb/repo/" "10.3/ubuntu {codename} main" .format(codename=wo_platform_codename)) elif wo_platform_distro == 'debian': - wo_mysql_repo = ("deb [arch=amd64,i386,ppc64el] http://sfo1.mirrors.digitalocean.com/mariadb/repo/" + wo_mysql_repo = ("deb [arch=amd64,ppc64el] http://sfo1.mirrors.digitalocean.com/mariadb/repo/" "10.3/debian {codename} main" .format(codename=wo_platform_codename))