forked from Python-Markdown/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New changelog is at `docs/changelog.md` and uses the format defined at <https://keepachangelog.com/>. It only contins releases in the 3.x series. The old changelog at `docs/change_log/` remains in its old format as an archive and only contains older releases. The archive is removed from the site navigation and is only accessable from links in the new changelog. It is anticipated that only one major release (and its minor releases) will ever be in the new changelog at a time. Therefore, with the release of a future version 4.0, the 3.x changelog would be archived as well. Update the contributing guide to reflect the changes. Update the changelog validation workflow to use an action which understands the new format. Update deploy action to include release notes from changelog in a GitHub release.
- Loading branch information
Showing
17 changed files
with
831 additions
and
811 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: changelog | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '**' | ||
path: | ||
# Only run if changes were made in markdown/ | ||
- 'markdown/**' | ||
|
||
# permissions: | ||
# pull-requests: write | ||
|
||
jobs: | ||
validate: | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
# - uses: actions/checkout@v2 | ||
- uses: dangoslen/changelog-enforcer@v3 | ||
with: | ||
changeLogPath: 'docs/changelog.md' | ||
missingUpdateErrorMessage: | | ||
@${{ github.actor }}, thank you for your contribution. It appears that you have not added a comment to the | ||
changelog describing the changes you have made. Doing so will help to ensure your contribution is accepted. | ||
Please see the [Contributing Guide](https://python-markdown.github.io/contributing/#changelog) for details. |
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,21 @@ | ||
name: docs | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '**' | ||
# Only run when changes are made to the docs. | ||
paths: | ||
- 'docs/**' | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: yes | ||
use-verbose-mode: yes | ||
check-modified-files-only: yes | ||
base-branch: master |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.