Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
test-script: test:with-coverage
upload-coverage: true
- os: ubuntu-latest
python-version: pypy-3.9-v7.x
python-version: pypy-3.11
py: pypy3
test-script: test:test
- os: macos-latest
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- python-version: '3.12'
- python-version: '3.13'
- python-version: '3.14'
- python-version: pypy-3.9-v7.x
- python-version: pypy-3.11
py: pypy3
runs-on: ubuntu-latest
steps:
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: PR Auto-labeler

on:
# pull_request event is required for auto-labeler
pull_request:
types: [opened, reopened, synchronize]

permissions: {}

jobs:
draft-release:
permissions:
pull-requests: write
contents: read
uses: mkdocs-ng/.github/.github/workflows/pr-labeler.yml@main
1 change: 1 addition & 0 deletions docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ The current members of the MkDocs-NG team.

* Remove the unmaintained `mergedeep` dependency by replacing it with an internal deep-merge helper for inherited YAML configuration. #29
* Add a release-note generation skill and repository agent instructions to make maintainer workflows more consistent. #35
* Upgrade `PyPy` from 3.9 to 3.11 to fix CI failure and add a PR auto-labeler workflow to automatically tag incoming pull requests. #37

## Version 1.7.0 (2026-04-24)

Expand Down
Loading