From 70035ce1f9ea1eb1fe9d27d5af6cc3cb0b15ec14 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 14 Dec 2018 09:55:06 -0500 Subject: [PATCH] complete import into opendev infrastructure add .gitreview file for gerrit set up linters job update location of git repo and add basic contributing instructions Change-Id: I06f35574f42cfb6270a8b8e225555388d12fdad9 Signed-off-by: Doug Hellmann --- .gitreview | 4 ++++ .zuul.yaml | 7 +++++++ CONTRIBUTING.rst | 10 ++++++++++ README.rst | 9 ++++++--- tox.ini | 4 ++-- 5 files changed, 29 insertions(+), 5 deletions(-) create mode 100644 .gitreview create mode 100644 .zuul.yaml create mode 100644 CONTRIBUTING.rst diff --git a/.gitreview b/.gitreview new file mode 100644 index 0000000..a8e1184 --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=review.openstack.org +port=29418 +project=openstack/git-os-job.git diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 0000000..dfcb7f1 --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,7 @@ +- project: + check: + jobs: + - openstack-tox-linters + gate: + jobs: + - openstack-tox-linters diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst new file mode 100644 index 0000000..3e7c7cd --- /dev/null +++ b/CONTRIBUTING.rst @@ -0,0 +1,10 @@ +If you would like to contribute to the development of OpenStack, +start by following the steps in this page: + + https://docs.openstack.org/infra/manual/developers.html + +Once those steps have been completed, changes to OpenStack +should be submitted for review via the Gerrit tool, following +the workflow documented at: + + https://docs.openstack.org/infra/manual/developers.html#development-workflow diff --git a/README.rst b/README.rst index e234ff4..c539e0f 100644 --- a/README.rst +++ b/README.rst @@ -43,7 +43,10 @@ submitting a release tag:: Contributing and Reporting Bugs ------------------------------- -Please use the bug tracker on the github repository to report -problems. Patches for improvements are welcome, too. +Please use the storyboard tracker to report problems. -https://github.com/dhellmann/git-os-job +https://storyboard.openstack.org/#!/project/1099 + +Patches for improvements are welcome, too, via gerrit: + +https://git.openstack.org/openstack/git-os-job diff --git a/tox.ini b/tox.ini index 32cec92..fa8cdf6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py27,style +envlist = py36,linters [testenv] setenv = @@ -10,6 +10,6 @@ setenv = commands = echo "no tests" -[testenv:style] +[testenv:linters] deps = flake8 commands = flake8 git_os_job setup.py