1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 04:11:00 -04:00

Update GitHub username

This commit is contained in:
toast-ts 2024-01-22 16:35:47 +11:00
parent 5cb816854f
commit d19a3fbfd3
5 changed files with 6 additions and 6 deletions

View File

@ -12,7 +12,7 @@ updates:
time: "12:00" time: "12:00"
timezone: "Australia/NSW" timezone: "Australia/NSW"
assignees: assignees:
- "AnxietyisReal" - "toast-ts"
labels: labels:
- "dependencies" - "dependencies"
open-pull-requests-limit: 8 open-pull-requests-limit: 8

View File

@ -1 +1 @@
AnxietyisReal <96593068+AnxietyisReal@users.noreply.github.com> Toast <96593068+AnxietyisReal@users.noreply.github.com> toast-ts <96593068+toast-ts@users.noreply.github.com> Toast <96593068+toast-ts@users.noreply.github.com>

View File

@ -1,5 +1,5 @@
<p align="center"> <p align="center">
<img width="630" height="250" src="https://github.com/AnxietyisReal/Daggerbot-TS/assets/96593068/87a3c8b2-2209-42f0-851c-6cdebf9ef740"> <img width="630" height="250" src="https://github.com/toast-ts/Daggerbot-TS/assets/96593068/87a3c8b2-2209-42f0-851c-6cdebf9ef740">
<h1 align="center">Daggerbot V3 Description</h1> <h1 align="center">Daggerbot V3 Description</h1>
</p> </p>
@ -17,7 +17,7 @@ This revision took **4 months** (Late September to Mid December) working on and
- Moved the module files to another directory called `modules` - Moved the module files to another directory called `modules`
- Renamed `funcs` to `components` as I don't think `funcs` directory makes sense anymore at this point. - Renamed `funcs` to `components` as I don't think `funcs` directory makes sense anymore at this point.
If you're looking for V2 revision, it has been moved to a [branch called `old`](https://github.com/AnxietyisReal/Daggerbot-TS/tree/old). If you're looking for V2 revision, it has been moved to a [branch called `old`](https://github.com/toast-ts/Daggerbot-TS/tree/old).
This is a revision history of how far we come in development cycle; This is a revision history of how far we come in development cycle;
| Revision | Language | Library | Commands | | Revision | Language | Library | Commands |

View File

@ -5,7 +5,7 @@
"type": "module", "type": "module",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/AnxietyisReal/Daggerbot-TS.git" "url": "git+https://github.com/toast-ts/Daggerbot-TS.git"
}, },
"scripts": { "scripts": {
"dev": "yarn tsc && yarn node . src/DB-Beta.config.json daggerbotbeta", "dev": "yarn tsc && yarn node . src/DB-Beta.config.json daggerbotbeta",

View File

@ -5,7 +5,7 @@ import git from 'simple-git';
const summonAuth = createTokenAuth((await TSClient()).octokit); const summonAuth = createTokenAuth((await TSClient()).octokit);
const octokit = new Octokit({auth: await summonAuth().token, timeZone: 'Australia/NSW', userAgent: 'Daggerbot-TS'}); const octokit = new Octokit({auth: await summonAuth().token, timeZone: 'Australia/NSW', userAgent: 'Daggerbot-TS'});
export default class GitHub { export default class GitHub {
private static repositoryConfig = {owner: 'AnxietyisReal', repo: 'Daggerbot-TS', ref: 'HEAD'}; private static repositoryConfig = {owner: 'toast-ts', repo: 'Daggerbot-TS', ref: 'HEAD'};
public static async RemoteRepository() { public static async RemoteRepository() {
const {data} = await octokit.repos.getCommit(this.repositoryConfig); const {data} = await octokit.repos.getCommit(this.repositoryConfig);
return data; return data;