-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improve current docs * remove placeholders from funding * bug report template markdown standard * mkdocs base * Hyperlinks fix in contributing * mkdocs somewhy doesnt support crossing text with ~~, lol * Using actual noitamp logo for logo * better job name * del: useless \ * renamed resources to res * Mirror github communty files to docs * more funding * add bug to bug report * Correct OSes in bug report example * Remove browsers from bug report Co-authored-by: Torben H. <Ismoh@users.noreply.github.com> * Update docs/index.md Co-authored-by: Torben H. <Ismoh@users.noreply.github.com> * Correct version example in bug report Co-authored-by: Torben H. <Ismoh@users.noreply.github.com> * Remove mobile from bug report * typo * Correct discord bot info * Missed support * Link to credits in readme * Path in changelog script * Missing eof lines * Fixed discord channel in docs/index.md --------- Co-authored-by: Torben H. <Ismoh@users.noreply.github.com>
- Loading branch information
Showing
27 changed files
with
1,763 additions
and
825 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 |
---|---|---|
@@ -1,13 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: Ismoh # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
patreon: # Replace with a single Patreon username | ||
open_collective: # Replace with a single Open Collective username | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
liberapay: # Replace with a single Liberapay username | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry | ||
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] | ||
github: Ismoh | ||
patreon: ismoh | ||
custom: ["https://donatebot.io/checkout/747169041457872917", "https://discord.gg/DhMurdcw4k"] |
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,36 @@ | ||
name: Deploy mkdocs | ||
on: | ||
push: | ||
branches: | ||
- master | ||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
name: 'Deploy mkdocs' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git Credentials | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v3 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install mkdocs-material | ||
- name: Mirror GitHub md's | ||
run: | | ||
cp -f CONTRIBUTING.md docs/contributing/CONTRIBUTING.md | ||
cp -f CODE_OF_CONDUCT.md docs/contributing/CODE_OF_CONDUCT.md | ||
cp -f LICENSE.md docs/about/LICENSE.md | ||
cp -f SUPOORT.md docs/SUPORT.md | ||
- run: mkdocs gh-deploy --force | ||
|
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.