diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d7d1e1b..5dc1052 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,7 +12,7 @@ updates: time: "12:00" timezone: "Australia/NSW" assignees: - - "AnxietyisReal" + - "toast-ts" labels: - "dependencies" open-pull-requests-limit: 8 diff --git a/.mailmap b/.mailmap index 72f3a72..ec4cc60 100644 --- a/.mailmap +++ b/.mailmap @@ -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> diff --git a/README.md b/README.md index 17295f1..7cee04c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +

Daggerbot V3 Description

@@ -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` - 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; | Revision | Language | Library | Commands | diff --git a/package.json b/package.json index 9cd4e27..79ce6d6 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "repository": { "type": "git", - "url": "git+https://github.com/AnxietyisReal/Daggerbot-TS.git" + "url": "git+https://github.com/toast-ts/Daggerbot-TS.git" }, "scripts": { "dev": "yarn tsc && yarn node . src/DB-Beta.config.json daggerbotbeta", diff --git a/src/helpers/GitHub.ts b/src/helpers/GitHub.ts index a4128dd..030e936 100644 --- a/src/helpers/GitHub.ts +++ b/src/helpers/GitHub.ts @@ -5,7 +5,7 @@ import git from 'simple-git'; const summonAuth = createTokenAuth((await TSClient()).octokit); const octokit = new Octokit({auth: await summonAuth().token, timeZone: 'Australia/NSW', userAgent: 'Daggerbot-TS'}); 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() { const {data} = await octokit.repos.getCommit(this.repositoryConfig); return data;