Skip to content

Commit

Permalink
Merge branch 'development' into internal-backpack
Browse files Browse the repository at this point in the history
  • Loading branch information
idinium96 committed Jan 17, 2023
2 parents 436eebd + fafebc2 commit 2fc88aa
Show file tree
Hide file tree
Showing 29 changed files with 622 additions and 410 deletions.
38 changes: 37 additions & 1 deletion .example/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
},
"counterOffer": {
"enable": true,
"skipIncludeMessage": false
"skipIncludeMessage": false,
"autoDeclineLazyOffer": false
},
"skipItemsInTrade": {
"enable": true
Expand Down Expand Up @@ -49,6 +50,10 @@
},
"pricecheckAfterTrade": {
"enable": true
},
"prefixes": {
"steam": "!",
"discord": "!"
}
},
"sendAlert": {
Expand Down Expand Up @@ -430,6 +435,14 @@
},
"additionalNotes": ""
},
"inventoryApis": {
"steamSupply": {
"enable": false
},
"steamApis": {
"enable": false
}
},
"discordChat": {
"online": {
"type": "LISTENING",
Expand Down Expand Up @@ -510,6 +523,29 @@
"sendStats": {
"enable": false,
"url": ""
},
"sendTf2Events": {
"systemMessage": {
"enable": true,
"url": "",
"custom": {
"content": ""
}
},
"displayNotification": {
"enable": true,
"url": "",
"custom": {
"content": ""
}
},
"itemBroadcast": {
"enable": true,
"url": "",
"custom": {
"content": ""
}
}
}
},
"customMessage": {
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.3.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.5.1
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Tag Commit (node:${{ matrix.node }})

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.3.0

- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
Expand All @@ -43,7 +43,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build final image
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v3.3.0
with:
push: true
tags: tf2autobot/tf2autobot:${{ github.sha }}-${{ matrix.node }}
4 changes: 2 additions & 2 deletions .github/workflows/docker-latest-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
name: Tag Latest (node:${{ matrix.node }})

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.3.0

- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
Expand All @@ -45,7 +45,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build final image
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v3.3.0
with:
push: true
tags: tf2autobot/tf2autobot:latest-${{ matrix.node }}
6 changes: 3 additions & 3 deletions .github/workflows/docker-release.tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
name: Tag Release (node:${{ matrix.node }})

steps:
- uses: actions/checkout@v3.2.0
- uses: actions/checkout@v3.3.0

- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v4.1.1
uses: docker/metadata-action@v4.3.0
with:
images: tf2autobot/tf2autobot
tags: |
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Build and push (node:${{ matrix.node }})
id: docker
uses: docker/build-push-action@v3.2.0
uses: docker/build-push-action@v3.3.0
with:
push: true
context: .
Expand Down
Loading

0 comments on commit 2fc88aa

Please sign in to comment.