diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 32d3fb8445..14140121ad 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -14,7 +14,7 @@ Based on the current `master` changes! - Follow the guides provided at [JDA Structure Guide](https://jda.wiki/contributing/structure-guide/) - Compare your code style to the one used all over JDA and ensure you do not break the consistency (if you find issues in the JDA style you can include and update it) - - Do not remove existing functionality, use deprecation instead (for reference [deprecation policy](https://github.com/DV8FromTheWorld/JDA#deprecation-policy)) + - Do not remove existing functionality, use deprecation instead (for reference [deprecation policy](https://github.com/discord-jda/JDA?tab=readme-ov-file#versioning-and-deprecation-policy)) 2. Making a Commit - While having multiple commits can help the reader understand your changes, it might sometimes be @@ -23,8 +23,8 @@ Based on the current `master` changes! 3. Updating your Fork - Before you start committing make sure your fork is updated. - (See [Syncing a Fork](https://help.github.com/articles/syncing-a-fork/) - or [Keeping a Fork Updated](https://robots.thoughtbot.com/keeping-a-github-fork-updated)) + (See [Syncing a Fork](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork) + or [Keeping a Fork Updated](https://thoughtbot.com/blog/keeping-a-github-fork-updated)) 4. Only open Pull Requests to master - Look at the [Repository Structure](https://jda.wiki/contributing/repository-structure/) for further details diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e3478d0710..9c0adbd26e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -4,10 +4,10 @@ body: - type: markdown attributes: value: |- - Please join the [Discord Server](https://discord.gg/0hMr4ce0tIl3SLv5) for questions or ask them in [our Discussions](https://github.com/DV8FromTheWorld/JDA/discussions). + Please join the [Discord Server](https://discord.gg/0hMr4ce0tIl3SLv5) for questions or ask them in [our Discussions](https://github.com/discord-jda/JDA/discussions). Keep in mind that this isn't the place to learn Java. - Please head over to [StackOverflow](https://stackoverflow.com/questions/tagged/java) for your general programming questions. + Please head over to [Stack Overflow](https://stackoverflow.com/questions/tagged/java) for your general programming questions. - type: checkboxes attributes: label: General Troubleshooting diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 849c2f380a..5727387dce 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,18 +3,21 @@ contact_links: - name: Discord url: https://discord.gg/0hMr4ce0tIk3pSjp about: The JDA Discord is the best place to receive fast support for your questions. + - name: Questions + url: https://github.com/discord-jda/JDA/discussions + about: You can ask questions about JDA and find useful information in our Discussions. - name: Javadoc - url: https://ci.dv8tion.net/job/JDA/javadoc/ + url: https://docs.jda.wiki/ about: The Javadoc is the perfect place to retrieve information about various methods within JDA. - - name: Jenkins - url: https://ci.dv8tion.net/job/JDA/ - about: You can find the latest Dev Builds on the Jenkins CI Server. - name: Wiki - url: https://jda.wiki + url: https://jda.wiki/ about: You can find answers to common questions on our Wiki. Make sure to read the FAQ page! - name: Releases - url: https://github.com/DV8FromTheWorld/JDA/releases + url: https://github.com/discord-jda/JDA/releases about: You can find the latest releases here on GitHub and on Bintray. - - name: Questions - url: https://github.com/DV8FromTheWorld/JDA/discussions - about: You can ask questions about JDA and find useful information in our Discussions. + - name: Snapshots + url: https://jitpack.io/#discord-jda/JDA + about: You can find the latest dev builds on JitPack. + - name: Jenkins + url: https://ci.dv8tion.net/job/JDA5/ + about: Dev builds also available on the Jenkins CI Server. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index d41e5bb9c1..a7f02e91c0 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -4,10 +4,10 @@ body: - type: markdown attributes: value: |- - Please join the [Discord Server](https://discord.gg/0hMr4ce0tIl3SLv5) for questions or ask them in [our Discussions](https://github.com/DV8FromTheWorld/JDA/discussions). + Please join the [Discord Server](https://discord.gg/0hMr4ce0tIl3SLv5) for questions or ask them in [our Discussions](https://github.com/discord-jda/JDA/discussions). Keep in mind that this isn't the place to learn Java. - Please head over to [StackOverflow](https://stackoverflow.com/questions/tagged/java) for your general programming questions. + Please head over to [Stack Overflow](https://stackoverflow.com/questions/tagged/java) for your general programming questions. - type: checkboxes attributes: label: General Troubleshooting @@ -15,7 +15,7 @@ body: options: - label: I have checked for similar issues on the Issue-tracker. required: true - - label: I have updated to the [latest JDA version](https://ci.dv8tion.net/job/JDA/lastSuccessfulBuild/) + - label: I have updated to the [latest JDA version](https://github.com/discord-jda/JDA/releases/latest) required: true - label: I have checked the branches or the maintainers' PRs for upcoming features. required: true diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index c1dafb9f44..0f00e0e5af 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -1,5 +1,5 @@ # This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time -# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle name: Pull Request Validation