forked from Foundation-19/Foundation-19
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "TGUI 4.3 + TG Chat + Statusbar + New Assets System + CBT" (Fo…
…undation-19#427) Revert "TGUI 4.3 + TG Chat + Statusbar + New Assets System + CBT (Foundation-19#414)" This reverts commit 5c63d9a.
- Loading branch information
Showing
1,912 changed files
with
29,487 additions
and
433,543 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
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: Compile changelogs | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
CompileCL: | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'Foundation-19/Foundation-19' # to prevent this running on forks | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b | ||
with: | ||
fetch-depth: 0 # Otherwise, we will fail to push refs | ||
ref: dev | ||
token: ${{ secrets.BOT_TOKEN }} | ||
- name: Python setup | ||
uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 | ||
with: | ||
python-version: '3.x' | ||
- name: Install depends | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pyyaml bs4 | ||
- name: Compile CL | ||
run: | | ||
python tools/changelog/ss13_genchangelog.py html/changelog.html html/changelogs | ||
- name: Commit And Push | ||
run: | | ||
git config --global user.email "${{ secrets.BOT_EMAIL }}" | ||
git config --global user.name "${{ secrets.BOT_NAME }}" | ||
git diff --quiet --exit-code && echo "No changes found, abort." && exit 0 | ||
git commit -m "Automatic changelog generation" -a | ||
git push |
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
name: Make changelogs | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
jobs: | ||
MakeCL: | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'Foundation-19/Foundation-19' # to prevent this running on forks | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b | ||
with: | ||
fetch-depth: 25 | ||
- name: Python setup | ||
uses: actions/setup-python@c4e89fac7e8767b327bbad6cb4d859eda999cf08 | ||
with: | ||
python-version: '3.x' | ||
- name: Install depends | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install ruamel.yaml PyGithub | ||
- name: Make CL | ||
env: | ||
BOT_TOKEN: ${{ secrets.BOT_TOKEN }} | ||
GIT_EMAIL: "${{ secrets.BOT_EMAIL }}" | ||
GIT_NAME: "${{ secrets.BOT_NAME }}" | ||
run: python tools/changelog/generate_cl.py |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,43 +1,38 @@ | ||
{ | ||
"eslint.nodePath": "./tgui/.yarn/sdks", | ||
"eslint.workingDirectories": ["./tgui"], | ||
"prettier.prettierPath": "./tgui/.yarn/sdks/prettier/index.js", | ||
"typescript.tsdk": "./tgui/.yarn/sdks/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"files.eol": "\n", | ||
"files.insertFinalNewline": true, | ||
"gitlens.advanced.blame.customArguments": ["-w"], | ||
"tgstationTestExplorer.project.resultsType": "json", | ||
"[javascript]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[javascriptreact]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescript]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[scss]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
} | ||
"eslint.nodePath": "./tgui/.yarn/sdks", | ||
"eslint.workingDirectories": [ | ||
"./tgui" | ||
], | ||
"typescript.tsdk": "./tgui/.yarn/sdks/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"workbench.editorAssociations": { | ||
"*.dmi": "imagePreview.previewEditor" | ||
}, | ||
"files.eol": "\n", | ||
"files.insertFinalNewline": true, | ||
"gitlens.advanced.blame.customArguments": [ | ||
"-w" | ||
], | ||
"[javascript]": { | ||
"editor.rulers": [ | ||
80 | ||
] | ||
}, | ||
"[typescript]": { | ||
"editor.rulers": [ | ||
80 | ||
] | ||
}, | ||
"[scss]": { | ||
"editor.rulers": [ | ||
80 | ||
] | ||
} | ||
} |
Oops, something went wrong.