Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: surftimer/SurfTimer-Discord-Bot
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0
Choose a base ref
...
head repository: surftimer/SurfTimer-Discord-Bot
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 5 commits
  • 8 files changed
  • 4 contributors

Commits on Jan 26, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    c6d1f48 View commit details

Commits on May 19, 2023

  1. fix: invalid import

    Sarrus1 committed May 19, 2023
    Copy the full SHA
    e194e3b View commit details

Commits on Sep 16, 2023

  1. Add files via upload

    Bara authored Sep 16, 2023
    Copy the full SHA
    98fe650 View commit details
  2. Chore(deps): Bump actions/checkout from 2 to 4 (#1)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v2...v4)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 16, 2023
    Copy the full SHA
    e4fa6d4 View commit details
  3. Chore(deps): Bump docker/login-action from 1 to 3 (#2)

    Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 3.
    - [Release notes](https://github.com/docker/login-action/releases)
    - [Commits](docker/login-action@v1...v3)
    
    ---
    updated-dependencies:
    - dependency-name: docker/login-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 16, 2023
    Copy the full SHA
    92ebd08 View commit details
Showing with 5,594 additions and 16 deletions.
  1. +8 −0 .github/dependabot.yml
  2. +2 −2 .github/workflows/release.yml
  3. +0 −1 .gitignore
  4. +7 −7 docker-compose.yml
  5. +5,571 −0 package-lock.json
  6. +2 −2 src/commands/mapstats.ts
  7. +2 −2 src/commands/playerstats.ts
  8. +2 −2 src/commands/top.ts
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@ jobs:
publish-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules
dist
.env
package-lock.json
.vscode/settings.json
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -6,16 +6,16 @@ services:
restart: always
environment:
# Discord token (https://discordjs.guide/preparations/setting-up-a-bot-application.html#creating-your-bot)
- TOKEN: 0000000000000
- TOKEN=0000000000000
# Guild ID (https://poshbot.readthedocs.io/en/latest/guides/backends/setup-discord-backend/#find-your-guild-id-server-id)
- GUILDID: 0000000000000
- GUILDID=0000000000000
# Application ID (https://poshbot.readthedocs.io/en/latest/guides/backends/setup-discord-backend/#authorize-your-bot)
- CLIENTID: 0000000000000
- CLIENTID=0000000000000
# Database URL (https://www.prisma.io/docs/concepts/database-connectors/mysql#connection-url)
- DATABASE_URL: mysql://USER:PASSWORD@HOST:PORT/DATABASE
- DATABASE_URL=mysql://USER:PASSWORD@HOST:PORT/DATABASE
# Steam Web API key (https://steamcommunity.com/dev/apikey)
- STEAM_API_KEY: 0000000000000
- STEAM_API_KEY=0000000000000
# The id of the channel where map records will be sent.
- MAP_RECORD_CHANNEL_ID: 869859765987607
- MAP_RECORD_CHANNEL_ID=869859765987607
# The API key to use in your CSGO plugin. Generate it here (https://toolslite.com/api-key-generator)
- API_KEY: fGREZ78R98-fGREZ78R98-fGREZ78R98-fGREZ78R98-fGREZ78R98
- API_KEY=fGREZ78R98-fGREZ78R98-fGREZ78R98-fGREZ78R98-fGREZ78R98
Loading