From 8a7b72f7cd1ccd547a03eb4243294e741d661d3f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 8 Feb 2019 08:30:37 +0100 Subject: Adding upstream version 1.12.0. Signed-off-by: Daniel Baumann --- .github/CODEOWNERS | 25 ++++++++++++++++------- .github/ISSUE_TEMPLATE.md | 10 +++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 34 +++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 16 +++++++++++++++ .github/ISSUE_TEMPLATE/question.md | 25 +++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 19 +++++++++++++++++ .github/stale.yml | 19 +++++++++++++++++ 7 files changed, 141 insertions(+), 7 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/question.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/stale.yml (limited to '.github') diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 586030e6d..72c793e0c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,8 +1,12 @@ +# Files which shouldn't be changed manually are owned by @netdatabot. +# This way we prevent modifications which will be overwriten by automation. + # Global (default) code owner * @ktsaou # Ownership by directory structure -.travis/ @paufantom +.travis/ @paufantom @cakrit +.github/ @paufantom @cakrit build/ @paulfantom backends/ @ktsaou @vlvkobal backends/graphite/ @ktsaou @vlvkobal @@ -17,26 +21,28 @@ collectors/node.d.plugin/ @ktsaou @gmosx collectors/node.d.plugin/fronius/ @ktsaou @gmosx @ccremer collectors/node.d.plugin/snmp/ @ktsaou @gmosx @cakrit collectors/node.d.plugin/stiebeleltron/ @ktsaou @gmosx @ccremer -collectors/python.d.plugin/ @l2isbad +collectors/python.d.plugin/ @ilyam8 daemon/ @ktsaou @vlvkobal database/ @ktsaou @mfundul -docker/ @paulfantom -health/ @ktsaou @mfundul +docs/ @cakrit +health/ @ktsaou @cakrit health/health.d/ @ktsaou @cakrit -health/notifications/ @ktsaou @Ferroin -installer/ @ktsaou @paulfantom +health/notifications/ @ktsaou @Ferroin @cakrit +installer/ @ktsaou @paulfantom @cakrit libnetdata/ @ktsaou @vlvkobal makeself/ @ktsaou @paulfantom packaging/ @paulfantom registry/ @ktsaou @gmosx streaming/ @ktsaou @mfundul -web/ @ktsaou @vlvkobal @gmosx +web/ @ktsaou @vlvkobal +web/gui/ @ktsaou @gmosx # Ownership by filetype (overwrites ownership by directory) *.md @ktsaou @cakrit *.am @paulfantom @ktsaou # Ownership of specific files +.gitignore @paulfantom @cakrit .travis.yml @paulfantom .lgtm.yml @paulfantom .eslintrc @paulfantom @@ -44,5 +50,10 @@ web/ @ktsaou @vlvkobal @gmosx .csslintrc @paulfantom .codeclimate.yml @paulfantom .codacy.yml @paulfantom +netdata.spec.in @paulfantom +netlify.toml @cakrit +package.json @gmosx +packaging/version @netdatabot +LICENSE.md @ktsaou CHANGELOG.md @netdatabot diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000..4fe94ad65 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,10 @@ + + +#### Summary + diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..fbd69a2f6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,34 @@ +--- +name: Bug report +about: Create a bug report to help us improve + +--- + + + +##### Bug report summary + +##### OS / Environment + +##### Netdata version (ouput of `netdata -V`) + +##### Component Name + +##### Steps To Reproduce + +##### Expected behavior diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..b27ba2653 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: Feature request +about: Suggest an idea for our project + +--- + + + +##### Feature idea summary + +##### Expected behavior diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 000000000..9bdf6f14e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,25 @@ +--- +name: Question +about: You just want to ask a question? Go on. +--- + + + +##### Question summary + +##### OS / Environment + +##### Component Name + +##### Expected results diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..b4932f9c5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,19 @@ + + +##### Summary + +##### Component Name + +##### Additional Information + diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..dfa5ce2c0 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,19 @@ +--- +only: issues +limitPerRun: 30 +daysUntilStale: 45 +daysUntilClose: 60 +exemptLabels: + - bug + - help wanted + - feature request +exemptProjects: true +exemptMilestones: true +staleLabel: stale +markComment: > + Currently netdata 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. -- cgit v1.2.3