Update links under .github/ to point to new github org
This commit is contained in:
parent
6d3b9dac71
commit
144f35b82d
7 changed files with 25 additions and 25 deletions
30
.github/CONTRIBUTING.md
vendored
30
.github/CONTRIBUTING.md
vendored
|
@ -1,7 +1,7 @@
|
||||||
# Introduction
|
# Introduction
|
||||||
|
|
||||||
Thank you for considering contributing to **yadm**. I develop this project in my
|
Thank you for considering contributing to **yadm**. We develop this project in
|
||||||
limited spare time, so help is very appreciated.
|
our limited spare time, so help is very appreciated.
|
||||||
|
|
||||||
All contributors must follow our [Code of Conduct][conduct]. Please make sure
|
All contributors must follow our [Code of Conduct][conduct]. Please make sure
|
||||||
you are welcoming and friendly during your interactions, and report any
|
you are welcoming and friendly during your interactions, and report any
|
||||||
|
@ -17,7 +17,8 @@ To contribute, you can:
|
||||||
* Star the yadm repo, the star count helps others discover yadm.
|
* Star the yadm repo, the star count helps others discover yadm.
|
||||||
* Report [bugs](#reporting-a-bug)
|
* Report [bugs](#reporting-a-bug)
|
||||||
* Request [features/enhancements](#suggesting-a-feature-or-enhancement)
|
* Request [features/enhancements](#suggesting-a-feature-or-enhancement)
|
||||||
* Contribute changes to [code, tests](#contributing-code), and [documentation](#improving-documentation)
|
* Contribute changes to [code, tests](#contributing-code), and
|
||||||
|
[documentation](#improving-documentation)
|
||||||
* Maintain installation [packages](#maintaining-packages)
|
* Maintain installation [packages](#maintaining-packages)
|
||||||
* Help other users by [answering support questions](#answering-support-questions)
|
* Help other users by [answering support questions](#answering-support-questions)
|
||||||
|
|
||||||
|
@ -70,14 +71,14 @@ Consider trying to reproduce the bug inside a docker container using the
|
||||||
[yadm/testbed][] docker image. Doing so will greatly increase the likelihood of
|
[yadm/testbed][] docker image. Doing so will greatly increase the likelihood of
|
||||||
the problem being fixed.
|
the problem being fixed.
|
||||||
|
|
||||||
The easiest way to start this container, is to clone the [TheLocehiliosan/yadm
|
The easiest way to start this container, is to clone the [yadm
|
||||||
repo][yadm-repo], and use the `scripthost` make target. _(You will need `make`
|
repo][yadm-repo], and use the `scripthost` make target. _(You will need `make`
|
||||||
and `docker` installed.)_
|
and `docker` installed.)_
|
||||||
|
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
$ git clone https://github.com/TheLocehiliosan/yadm.git
|
$ git clone https://github.com/yadm-dev/yadm.git
|
||||||
$ cd yadm
|
$ cd yadm
|
||||||
$ make scripthost version=1.12.0
|
$ make scripthost version=1.12.0
|
||||||
Starting scripthost version="1.12.0" (recording script)
|
Starting scripthost version="1.12.0" (recording script)
|
||||||
|
@ -203,7 +204,7 @@ these principles when making changes.
|
||||||
3. Add the official repository (`upstream`) as a remote repository.
|
3. Add the official repository (`upstream`) as a remote repository.
|
||||||
|
|
||||||
```text
|
```text
|
||||||
$ git remote add upstream https://github.com/TheLocehiliosan/yadm.git
|
$ git remote add upstream https://github.com/yadm-dev/yadm.git
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Verify you can run the test harness. _(This will require dependencies:
|
4. Verify you can run the test harness. _(This will require dependencies:
|
||||||
|
@ -361,25 +362,24 @@ see if you can help.
|
||||||
[attach-help]: https://help.github.com/en/articles/file-attachments-on-issues-and-pull-requests
|
[attach-help]: https://help.github.com/en/articles/file-attachments-on-issues-and-pull-requests
|
||||||
[commit-style]: https://chris.beams.io/posts/git-commit/#seven-rules
|
[commit-style]: https://chris.beams.io/posts/git-commit/#seven-rules
|
||||||
[conduct]: CODE_OF_CONDUCT.md
|
[conduct]: CODE_OF_CONDUCT.md
|
||||||
[contrib-hooks]: https://github.com/TheLocehiliosan/yadm/tree/master/contrib/hooks
|
[contrib-hooks]: https://github.com/yadm-dev/yadm/tree/master/contrib/hooks
|
||||||
[flake8]: https://pypi.org/project/flake8/
|
[flake8]: https://pypi.org/project/flake8/
|
||||||
[groff-man]: https://www.gnu.org/software/groff/manual/html_node/man.html
|
[groff-man]: https://www.gnu.org/software/groff/manual/html_node/man.html
|
||||||
[hooks-help]: https://github.com/TheLocehiliosan/yadm/blob/master/yadm.md#hooks
|
[hooks-help]: https://github.com/yadm-dev/yadm/blob/master/yadm.md#hooks
|
||||||
[html-proofer]: https://github.com/gjtorikian/html-proofer
|
[html-proofer]: https://github.com/gjtorikian/html-proofer
|
||||||
[jekyll]: https://jekyllrb.com
|
[jekyll]: https://jekyllrb.com
|
||||||
[new-bug]: https://github.com/TheLocehiliosan/yadm/issues/new?template=BUG_REPORT.md
|
[new-bug]: https://github.com/yadm-dev/yadm/issues/new?template=BUG_REPORT.md
|
||||||
[new-feature]: https://github.com/TheLocehiliosan/yadm/issues/new?template=FEATURE_REQUEST.md
|
[new-feature]: https://github.com/yadm-dev/yadm/issues/new?template=FEATURE_REQUEST.md
|
||||||
[open-issues]: https://github.com/TheLocehiliosan/yadm/issues
|
[open-issues]: https://github.com/yadm-dev/yadm/issues
|
||||||
[pr-help]: https://help.github.com/en/articles/creating-a-pull-request-from-a-fork
|
[pr-help]: https://help.github.com/en/articles/creating-a-pull-request-from-a-fork
|
||||||
[pylint]: https://pylint.org/
|
[pylint]: https://pylint.org/
|
||||||
[pytest]: https://pytest.org/
|
[pytest]: https://pytest.org/
|
||||||
[questions]: https://github.com/TheLocehiliosan/yadm/labels/question
|
[questions]: https://github.com/yadm-dev/yadm/labels/question
|
||||||
[refactor]: https://github.com/TheLocehiliosan/yadm/issues/146
|
|
||||||
[shellcheck]: https://www.shellcheck.net
|
[shellcheck]: https://www.shellcheck.net
|
||||||
[signing-commits]: https://help.github.com/en/articles/signing-commits
|
[signing-commits]: https://help.github.com/en/articles/signing-commits
|
||||||
[tpope-style]: https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
[tpope-style]: https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
||||||
[yadm-man]: https://github.com/TheLocehiliosan/yadm/blob/master/yadm.md
|
[yadm-man]: https://github.com/yadm-dev/yadm/blob/master/yadm.md
|
||||||
[yadm-repo]: https://github.com/TheLocehiliosan/yadm
|
[yadm-repo]: https://github.com/yadm-dev/yadm
|
||||||
[yadm/jekyll]: https://hub.docker.com/r/yadm/jekyll
|
[yadm/jekyll]: https://hub.docker.com/r/yadm/jekyll
|
||||||
[yadm/testbed]: https://hub.docker.com/r/yadm/testbed
|
[yadm/testbed]: https://hub.docker.com/r/yadm/testbed
|
||||||
[yamllint]: https://github.com/adrienverge/yamllint
|
[yamllint]: https://github.com/adrienverge/yamllint
|
||||||
|
|
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
|
@ -1,6 +1,6 @@
|
||||||
<!--
|
<!--
|
||||||
Before submitting, please search open and closed issues at
|
Before submitting, please search open and closed issues at
|
||||||
https://github.com/TheLocehiliosan/yadm/issues to avoid duplication.
|
https://github.com/yadm-dev/yadm/issues to avoid duplication.
|
||||||
|
|
||||||
If you have found a security vulnerability, do NOT open an issue.
|
If you have found a security vulnerability, do NOT open an issue.
|
||||||
Email yadm@yadm.io instead.
|
Email yadm@yadm.io instead.
|
||||||
|
|
6
.github/ISSUE_TEMPLATE/BUG_REPORT.md
vendored
6
.github/ISSUE_TEMPLATE/BUG_REPORT.md
vendored
|
@ -8,7 +8,7 @@ assignees: ''
|
||||||
---
|
---
|
||||||
<!--
|
<!--
|
||||||
Before submitting, please search open and closed issues at
|
Before submitting, please search open and closed issues at
|
||||||
https://github.com/TheLocehiliosan/yadm/issues to avoid duplication.
|
https://github.com/yadm-dev/yadm/issues to avoid duplication.
|
||||||
|
|
||||||
If you have found a security vulnerability, do NOT open an issue.
|
If you have found a security vulnerability, do NOT open an issue.
|
||||||
Email yadm@yadm.io instead.
|
Email yadm@yadm.io instead.
|
||||||
|
@ -25,10 +25,10 @@ Can this be reproduced with the yadm/testbed docker image: [Yes/No]
|
||||||
Consider trying to reproduce the bug inside a docker container using the
|
Consider trying to reproduce the bug inside a docker container using the
|
||||||
yadm/testbed docker image. https://hub.docker.com/r/yadm/testbed
|
yadm/testbed docker image. https://hub.docker.com/r/yadm/testbed
|
||||||
|
|
||||||
The easiest way to start this container, is to clone the TheLocehiliosan/yadm
|
The easiest way to start this container, is to clone the yadm-dev/yadm
|
||||||
repo, and use the "scripthost" make target. For example:
|
repo, and use the "scripthost" make target. For example:
|
||||||
|
|
||||||
$ git clone https://github.com/TheLocehiliosan/yadm.git
|
$ git clone https://github.com/yadm-dev/yadm.git
|
||||||
$ cd yadm
|
$ cd yadm
|
||||||
$ make scripthost version=1.11.0
|
$ make scripthost version=1.11.0
|
||||||
Starting scripthost version="1.11.0" (recording script)
|
Starting scripthost version="1.11.0" (recording script)
|
||||||
|
|
2
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
vendored
2
.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md
vendored
|
@ -8,7 +8,7 @@ assignees: ''
|
||||||
---
|
---
|
||||||
<!--
|
<!--
|
||||||
Before submitting, please search open and closed issues at
|
Before submitting, please search open and closed issues at
|
||||||
https://github.com/TheLocehiliosan/yadm/issues to avoid duplication.
|
https://github.com/yadm-dev/yadm/issues to avoid duplication.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
### Is your feature request related to a problem? Please describe.
|
### Is your feature request related to a problem? Please describe.
|
||||||
|
|
2
.github/ISSUE_TEMPLATE/OTHER.md
vendored
2
.github/ISSUE_TEMPLATE/OTHER.md
vendored
|
@ -8,7 +8,7 @@ assignees: ''
|
||||||
---
|
---
|
||||||
<!--
|
<!--
|
||||||
Before submitting, please search open and closed issues at
|
Before submitting, please search open and closed issues at
|
||||||
https://github.com/TheLocehiliosan/yadm/issues to avoid duplication.
|
https://github.com/yadm-dev/yadm/issues to avoid duplication.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
### This issue is about
|
### This issue is about
|
||||||
|
|
4
.github/ISSUE_TEMPLATE/SUPPORT.md
vendored
4
.github/ISSUE_TEMPLATE/SUPPORT.md
vendored
|
@ -8,11 +8,11 @@ assignees: ''
|
||||||
---
|
---
|
||||||
<!--
|
<!--
|
||||||
Before submitting, please search open and closed issues at
|
Before submitting, please search open and closed issues at
|
||||||
https://github.com/TheLocehiliosan/yadm/issues to avoid duplication.
|
https://github.com/yadm-dev/yadm/issues to avoid duplication.
|
||||||
|
|
||||||
Please also consult:
|
Please also consult:
|
||||||
* The FAQ: https://yadm.io/docs/faq
|
* The FAQ: https://yadm.io/docs/faq
|
||||||
* The manual: https://github.com/TheLocehiliosan/yadm/blob/master/yadm.md
|
* The manual: https://github.com/yadm-dev/yadm/blob/master/yadm.md
|
||||||
-->
|
-->
|
||||||
|
|
||||||
### This question is about
|
### This question is about
|
||||||
|
|
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -29,6 +29,6 @@ Be sure to preface the issue/PR numbers with a "#".
|
||||||
|
|
||||||
Please review [yadm's Contributing Guide][3] for best practices.
|
Please review [yadm's Contributing Guide][3] for best practices.
|
||||||
|
|
||||||
[1]: https://github.com/TheLocehiliosan/yadm/blob/master/.github/CONTRIBUTING.md#test-conventions
|
[1]: https://github.com/yadm-dev/yadm/blob/master/.github/CONTRIBUTING.md#test-conventions
|
||||||
[2]: https://help.github.com/en/articles/signing-commits
|
[2]: https://help.github.com/en/articles/signing-commits
|
||||||
[3]: https://github.com/TheLocehiliosan/yadm/blob/master/.github/CONTRIBUTING.md
|
[3]: https://github.com/yadm-dev/yadm/blob/master/.github/CONTRIBUTING.md
|
||||||
|
|
Loading…
Reference in a new issue