-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implementing
ansys/actions/changelogs
and adding release note…
… in documentation (#3019) * maint: update `labeler.yml` * feat: implementing `ansys/actions/changelogs` * Adding changelog entry: 3019.miscellaneous.md * maint: adding `doc-deploy-changelog` action and removing `release.yml` as unused * maint: adding `update-changelog` as a CICD dependency * fix: `changelog.rst` file * revert: readding `release.yml` file * maint: update `labeler.yml` * feat: implementing `ansys/actions/changelogs` * Adding changelog entry: 3019.miscellaneous.md * maint: adding `doc-deploy-changelog` action and removing `release.yml` as unused * maint: adding `update-changelog` as a CICD dependency * fix: `changelog.rst` file * revert: readding `release.yml` file * Update CHANGELOG.md Co-authored-by: Kathy Pippert <84872299+PipKat@users.noreply.github.com> * maint: adding `branch-name-style` and `commit-style` * Adding pull request template * Update pyproject.toml Co-authored-by: German <28149841+germa89@users.noreply.github.com> * doc: adding branch and commit naming convention references * doc: adding the mention of the *PyAnsys Developer's Guide* before redirecting to the links * Apply suggestions from code review Co-authored-by: German <28149841+germa89@users.noreply.github.com> * doc: removing unused practice * maint: removing `Testing` label in `labeler.yml` * doc: redirecting to PyAnsys dev guide * Update .github/pull_request_template.md Co-authored-by: German <28149841+germa89@users.noreply.github.com> * fix: updating `dependabot.yml` file --------- Co-authored-by: pyansys-ci-bot <pyansys.github.bot@ansys.com> Co-authored-by: Kathy Pippert <84872299+PipKat@users.noreply.github.com> Co-authored-by: German <germanmartinezayuso@gmail.com> Co-authored-by: German <28149841+germa89@users.noreply.github.com>
- Loading branch information
1 parent
bee6643
commit 4953669
Showing
13 changed files
with
163 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Description | ||
**Please provide a brief description of the changes made in this pull request.** | ||
|
||
## Issue linked | ||
**Please mention the issue number or describe the problem this pull request addresses.** | ||
|
||
## Checklist | ||
- [ ] I have visited and read [Develop PyMAPDL](https://mapdl.docs.pyansys.com/version/stable/getting_started/develop_pymapdl.html#develop-pymapdl). | ||
- [ ] I have [tested my changes locally](https://mapdl.docs.pyansys.com/version/stable/getting_started/develop_pymapdl.html#unit-testing) | ||
- [ ] I have added necessary [documentation or updated existing documentation](https://mapdl.docs.pyansys.com/version/stable/getting_started/write_documentation.html#id2). | ||
- [ ] I have followed the [PyMAPDL coding style guidelines](https://mapdl.docs.pyansys.com/version/stable/getting_started/develop_pymapdl.html#code-style). | ||
- [ ] I have added appropriate [unit tests](https://mapdl.docs.pyansys.com/version/stable/getting_started/develop_pymapdl.html#unit-testing) that also ensure the [minimal coverage criteria](https://mapdl.docs.pyansys.com/version/stable/getting_started/develop_pymapdl.html#code-coverage). | ||
- [ ] I have reviewed my changes before submitting this pull request. | ||
- [ ] I have [linked the issue or issues](https://dev.docs.pyansys.com/content-writing/content-how-tos/create-PR.html#id2) that are solved to the PR if any. | ||
- [ ] I have [assigned this PR to myself](https://dev.docs.pyansys.com/content-writing/content-how-tos/create-PR.html#id2). | ||
- [ ] I have marked this PR as ``draft`` if it is not ready to be reviewed yet. | ||
- [ ] I have made sure that the title of my PR follows [Commit naming conventions](https://dev.docs.pyansys.com/how-to/contributing.html#commit-naming-conventions) (e.g. ``feat: adding new MAPDL command``) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# CHANGELOG | ||
|
||
This project uses [towncrier](https://towncrier.readthedocs.io/) to generate changelogs. | ||
|
||
For more information, see the [raw release notes](doc/source/changelog.rst). | ||
|
||
[Published release notes](https://mapdl.docs.pyansys.com/version/stable/changelog.html) can be found in the online documentation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
feat: implementing `ansys/actions/changelogs` and adding release note in documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{% if sections[""] %} | ||
{% for category, val in definitions.items() if category in sections[""] %} | ||
|
||
{{ definitions[category]['name'] }} | ||
{% set underline = '^' * definitions[category]['name']|length %} | ||
{{ underline }} | ||
|
||
{% for text, values in sections[""][category].items() %} | ||
- {{ text }} {{ values|join(', ') }} | ||
{% endfor %} | ||
|
||
{% endfor %} | ||
{% else %} | ||
No significant changes. | ||
|
||
|
||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.. _ref_release_notes: | ||
|
||
Release notes | ||
############# | ||
|
||
This document contains the release notes for the project. | ||
|
||
.. vale off | ||
.. towncrier release notes start | ||
.. vale on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
mapdl_commands/index | ||
api/index | ||
examples/index | ||
changelog | ||
|
||
|
||
.. image:: ../source/_static/logo_dark.png | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters