Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blueprint_modified_again #23

Closed
wants to merge 54 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
507a4f0
first blueprint
martincaddick Nov 23, 2023
1f76b2c
makedocs on blueprint
martincaddick Nov 23, 2023
0984bd5
mkdocs
martincaddick Nov 23, 2023
8d7f2ee
overrides
martincaddick Nov 23, 2023
e26f36c
overrides again
martincaddick Nov 23, 2023
d4fb20a
remove overrides
martincaddick Nov 23, 2023
20d7e3b
removed overrides
martincaddick Nov 23, 2023
286046f
mkdocs
martincaddick Nov 23, 2023
889d2f7
toc
martincaddick Nov 23, 2023
31cafc7
Add overrides folder
martincaddick Nov 23, 2023
497b57f
added overrides back
martincaddick Nov 23, 2023
f540d2e
cleaned
martincaddick Nov 24, 2023
2fa2b56
clean again
martincaddick Nov 24, 2023
5e86879
added readme
martincaddick Nov 24, 2023
91b109c
no cookies or social
martincaddick Nov 24, 2023
2e3e8cb
latest version
martincaddick Nov 24, 2023
5e8d571
v3.1.0
martincaddick Nov 24, 2023
3eb0aa4
remove site url
martincaddick Nov 24, 2023
44b3920
favicon
martincaddick Nov 24, 2023
f0a59e3
revert mkdocs
martincaddick Nov 24, 2023
4193839
fallback to build date
martincaddick Nov 24, 2023
261f9e8
Added csss and overrides
martincaddick Nov 24, 2023
e89e50d
added that space
martincaddick Nov 24, 2023
485b486
removed overrides
martincaddick Nov 24, 2023
c37306b
version
martincaddick Nov 24, 2023
34028e5
version 0.1
martincaddick Nov 24, 2023
a3e2c4b
pip install
martincaddick Nov 24, 2023
7fb4d07
moved to docs fioolder
martincaddick Nov 24, 2023
d22fe56
reqs
martincaddick Nov 24, 2023
1b48269
update
martincaddick Nov 24, 2023
6420758
mkdocs
martincaddick Nov 24, 2023
32a6334
removed gitauthors
martincaddick Nov 24, 2023
1cc83ed
mike
martincaddick Nov 24, 2023
62c1032
removed mike
martincaddick Nov 24, 2023
eb1fe45
Tagged
martincaddick Nov 24, 2023
e930b84
Create MakeNewBranch.yml
martincaddick Nov 24, 2023
16865f4
Create PrintPRTitle.yml
martincaddick Nov 24, 2023
63376c5
Update PrintPRTitle.yml
martincaddick Nov 24, 2023
3a6021a
Update PrintPRTitle.yml
martincaddick Nov 24, 2023
6d4245b
Update PrintPRTitle.yml
martincaddick Nov 24, 2023
00a7377
Update PrintPRTitle.yml
martincaddick Nov 24, 2023
bb6f577
Create new-branch-from-pr.yml
martincaddick Nov 24, 2023
cf9c9ce
trying bard
martincaddick Nov 27, 2023
006f585
cleaned mkdocs.yml
martincaddick Nov 27, 2023
97953f4
removed simple
martincaddick Nov 27, 2023
1f129be
no plugins
martincaddick Nov 28, 2023
634d72b
fixed link
martincaddick Nov 28, 2023
e6e0876
always update dev to blueprint
martincaddick Nov 28, 2023
9b9fc9f
show site first
martincaddick Nov 28, 2023
3840f7a
Changed to Engine
martincaddick Nov 28, 2023
ed32b4f
renbamed engine
martincaddick Nov 28, 2023
8b5315b
debug
martincaddick Nov 28, 2023
6bbe958
reborke abac
martincaddick Nov 28, 2023
26a76a9
New branch from PR
martincaddick Nov 28, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: MakeDocs
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
branches: [ "main","blueprint" ]
# pull_request:
# branches: [ "main" ]

Expand All @@ -20,22 +20,9 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
#- name: Install plugins
# run: |
# python -m pip install --upgrade pip setuptools wheel
# pip install pillow cairosvg
# pip install mkdocs-minify-plugin==0.3.0
# pip install mkdocs-plugin-progress
# pip install mkdocs-techdocs-core
# pip show --verbose mkdocs-techdocs-core
# pip install mkdocs-git-revision-date-localized-plugin
# pip show --verbose mkdocs-git-revision-date-localized-plugin
# pip show --verbose mkdocs-material --version
# pip install mkdocs-table-reader-plugin
# pip install mkdocs-glightbox

- name: Build and push docs
uses: athackst/mkdocs-simple-plugin@11e81727cdfac8b224da1bb486d7072da6c5cd5d
uses: athackst/mkdocs-simple-plugin@v3.1.0
with:
# # (optional) Specify branch
# publish_branch: main # gh-pages
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/MakeNewBranch.yml.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Create Branch on Pull Release
on:
release:
types: [published]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
create_branch:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create new branch
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git checkout -b new-branch
git push origin new-branch
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25 changes: 25 additions & 0 deletions .github/workflows/PrintPRTitle.yml.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Print PR Title
on:
pull_request:
types: [opened,synchroize]
jobs:
print_title:
runs-on: ubuntu-latest
steps:
- name: Print PR Title
run: |
echo "The title name of the PR is: ${{ github.event.pull_request.title }}"

create_branch:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create new branch
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git checkout -b ${{github.event.pull_request.title }}
git push origin ${{github.event.pull_request.title }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52 changes: 52 additions & 0 deletions .github/workflows/bard.yml.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Bard
on:
pull_request:
types: [opened,synchronize]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install dependencies
run: |
python -m pip install mkdocs-material

# Build Documentation
- name: Build documentation
run: mkdocs build

- name: Compare Changes
id: compare_changes
uses: actions/upload-artifact@v3
with:
name: generated-docs
path: site

# Update engine branch
- name: Update engine branch if changes detected
# set debug to true
run: |
ls -l site/*
git checkout engine
git merge blueprint
git add site/*
git commit -m "Update engine documentation to include blueprint changes"
git push origin engine

# Notify reviwer
- name: Notify reviewer
if: steps.compare_changes.outputs.artifact_size > 0
uses: actions/github-script@v6
with:
script: |
github.issues.create({
title: "Documentation update available for review",
body: "The documentation has been updated and is ready for review. Please review the changes on the dev branch.",
assignees: ["martincaddick"]
})


12 changes: 12 additions & 0 deletions .github/workflows/mkdocslink.yml.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Check Markdown links

on: push

jobs:
mkdocs-link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Check links
uses: byrnereese/github-action-mkdocs-link-check@main
21 changes: 21 additions & 0 deletions .github/workflows/new-branch-from-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create branch from pull request title

on:
pull_request:
types: [opened, synchronize]

jobs:
create-branch:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Get pull request title
id: get-pull-request-title
run: |
echo "Pull request title: ${{ github.event.pull_request.title }}"

- name: Create branch from pull request title
run: |
git checkout -b ${{ github.event.pull_request.title }}
17 changes: 0 additions & 17 deletions .overrides/partials/main.html

This file was deleted.

100 changes: 0 additions & 100 deletions ASD.md

This file was deleted.

45 changes: 0 additions & 45 deletions AssumedKnowledge.md

This file was deleted.

39 changes: 0 additions & 39 deletions Author.md

This file was deleted.

Loading
Loading