ask for commit after changelog and authors file edit (#7878)

This commit is contained in:
Charles Aracil 2020-10-09 16:09:52 +02:00
parent dbd082af96
commit 2e322f183c
No known key found for this signature in database
GPG Key ID: 416F9FE68D014909
2 changed files with 6 additions and 6 deletions

View File

@ -299,12 +299,6 @@ Here is a simple overview, with pytest-specific bits:
$ pytest testing/test_config.py
#. Commit and push once your tests pass and you are happy with your change(s)::
$ git commit -a -m "<commit message>"
$ git push -u
#. Create a new changelog entry in ``changelog``. The file should be named ``<issueid>.<type>.rst``,
where *issueid* is the number of the issue related to the change and *type* is one of
``feature``, ``improvement``, ``bugfix``, ``doc``, ``deprecation``, ``breaking``, ``vendor``
@ -313,6 +307,11 @@ Here is a simple overview, with pytest-specific bits:
#. Add yourself to ``AUTHORS`` file if not there yet, in alphabetical order.
#. Commit and push once your tests pass and you are happy with your change(s)::
$ git commit -a -m "<commit message>"
$ git push -u
#. Finally, submit a pull request through the GitHub website using this data::
head-fork: YOUR_GITHUB_USERNAME/pytest

1
changelog/7878.doc.rst Normal file
View File

@ -0,0 +1 @@
In pull request section, ask to commit after editing changelog and authors file.