Skip to content

Commit 768726e

Browse files
committed
Rename .mermaid to .mmd
1 parent 0ce4c57 commit 768726e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ User-generated content is inserted automatically, using the Python scripts in th
323323
- [![👥 Insert Credits](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-credits.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-credits.yml) - _Inserts credits to helpful users, contributors and sponsors into the readme_
324324
- [![💬 Inserts Contributor Content](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-comments.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-comments.yml) - _Generates user-contributed content from `git-in-here.yml`_
325325
- [![📚 Inserts Guides & Resources](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-resources.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-resources.yml) - _Inserts each link listed in `resources.yml` into the readme_
326-
- [![🛣️ Inserts Learning Roadmap](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-roadmap.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-roadmap.yml) - _Parses + inserts roadmap chart from the code in `guides/roadmap.mermaid`_
326+
- [![🛣️ Inserts Learning Roadmap](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-roadmap.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/insert-roadmap.yml) - _Parses + inserts roadmap chart from the code in `guides/roadmap.mmd`_
327327
- [![🪞 Mirror to Codeberg](https://github.com/Lissy93/git-into-open-source/actions/workflows/mirror.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/mirror.yml) - _Syncs the current state of the repository over to Codeberg_
328328
- [![🚢 Trigger Deployment](https://github.com/Lissy93/git-into-open-source/actions/workflows/trigger-web-deploy.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/trigger-web-deploy.yml) - _After changes merged into `main` branch, deploy site to Netlify_
329329
- [![🚦 Check Contribution](https://github.com/Lissy93/git-into-open-source/actions/workflows/check-contribution.yml/badge.svg)](https://github.com/Lissy93/git-into-open-source/actions/workflows/check-contribution.yml) - _Validates PRs where changes made to `git-in-here.yml`_

.github/workflows/insert-roadmap.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches: [ main ]
7-
paths: ['guides/roadmap.mermaid']
7+
paths: ['guides/roadmap.mmd']
88

99
jobs:
1010
build:

lib/insert_roadmap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# Determine the project root based on the script's location
1818
project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
19-
mermaid_file = os.path.join(project_root, 'guides/roadmap.mermaid')
19+
mermaid_file = os.path.join(project_root, 'guides/roadmap.mmd')
2020
readme_path = os.path.join(project_root, '.github/README.md')
2121

2222

0 commit comments

Comments
 (0)