Skip to content

Commit

Permalink
Merge pull request #169 from LachlanMcKee/move-changelog-to-root
Browse files Browse the repository at this point in the history
Moved whatsnew.md to root and renamed to CHANGELOG.md
  • Loading branch information
LachlanMcKee authored Aug 14, 2022
2 parents 7e46d6c + f59f76d commit 01b1e16
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

## Check list

- [ ] I have updated `whatsnew.md` if required.
- [ ] I have updated `CHANGELOG.md` if required.
- [ ] I have updated documentation if required.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,15 @@ jobs:
path: |
**/build/reports
logcat.out
check-documentation:
name: Check documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: cp CHANGELOG.md documentation/changelog.md
- run: pip install mkdocs-material
- run: mkdocs build --strict
1 change: 1 addition & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: cp CHANGELOG.md documentation/changelog.md
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
File renamed without changes.
1 change: 1 addition & 0 deletions documentation/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
changelog.md
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ docs_dir: documentation

nav:
- Overview: index.md
- What's new: whatsnew.md
- Changelog: changelog.md
- Features:
- Core concepts: features/coreconcepts.md
- Your first and simplest feature: features/reducerfeature.md
Expand Down

0 comments on commit 01b1e16

Please sign in to comment.