-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from StrangeRanger/dev
Seval major changes to the text and 'under-the-hood' script changes
- Loading branch information
Showing
10 changed files
with
157 additions
and
67 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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Update Submodule Changes | ||
|
||
# Trigger the workflow on push events to Dependabot branches | ||
on: | ||
push: | ||
branches: | ||
- 'dependabot/**' | ||
|
||
jobs: | ||
update-file-after-submodule: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Run Update Script | ||
run: | | ||
chmod +x ./update_repo.py | ||
./update_repo.py | ||
- name: Configure Git | ||
run: | | ||
git config user.name "github-actions[bot]" | ||
git config user.email "[email protected]" | ||
# Step 5: Commit the changes if there are any | ||
- name: Commit Changes | ||
run: | | ||
git add . | ||
git commit -m "Update file after submodule update" || echo "No changes to commit" | ||
- name: Push Changes | ||
run: | | ||
git push origin HEAD:update-file-after-submodule | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
#token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "Update file after submodule update" | ||
title: "Update File After Submodule Update" | ||
body: | | ||
This pull request updates the relevant files after a submodule update by Dependabot. | ||
base: main | ||
head: update-file-after-submodule | ||
|
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,17 +1,6 @@ | ||
{ | ||
"cSpell.words": [ | ||
"betterem", | ||
"Hilite", | ||
"inlinehilite", | ||
"linenums", | ||
"matomo", | ||
"mkdocs", | ||
"nvim", | ||
"pygments", | ||
"pymdown", | ||
"pymdownx", | ||
"smartsymbols", | ||
"superfences", | ||
"viewports" | ||
"Neovim", | ||
"nvim" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Plugins,Description,Is a Command,Other Info | ||
[git](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/git),The git plugin provides many aliases and a few useful functions,Collection," " | ||
[colored-man-pages](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/colored-man-pages),Adds colors to man pages,No," " | ||
[copybuffer](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/copybuffer),"Allows you to copy what you are currently typing, via ++ctrl+'O'++",Yes,Key Combination: ++ctrl+'O'++ | ||
[copybuffer](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/copybuffer),"Allows you to copy what you are currently typing, via ++ctrl+'O'++",Yes/No,Key Combination: ++ctrl+'O'++ | ||
[copypath](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/copypath),Copies the path of your working directory,Yes," " | ||
[copyfile](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/copyfile),Copies the contents of a file,Yes," " | ||
[bgnotify](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/bgnotify),cross-platform background notifications for long running commands,No,[Extra install instructions](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/bgnotify) | ||
[bgnotify](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/bgnotify),cross-platform background notifications for long running commands,Yes/No,[Extra install instructions](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/bgnotify) | ||
[command-not-found](https://github.com/ohmyzsh/ohmyzsh/blob/master/plugins/command-not-found/README.md),This plugin uses the command-not-found package for zsh to provide suggested packages to be installed if a command cannot be found.,No," " |
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
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,3 @@ | ||
__version__ = "1.0.2" | ||
__author__ = "Hunter T. (StrangeRanger)" | ||
__license__ = "MIT" |
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