Skip to content

Commit

Permalink
Merge pull request #42 from twitchapis/main
Browse files Browse the repository at this point in the history
Release beta 14
  • Loading branch information
LoboMetalurgico authored Apr 29, 2021
2 parents f36835c + f057b64 commit 32498e8
Show file tree
Hide file tree
Showing 30 changed files with 1,776 additions and 558 deletions.
8 changes: 8 additions & 0 deletions .deepsource.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version = 1

[[analyzers]]
name = "javascript"
enabled = true

[analyzers.meta]
environment = ["nodejs"]
55 changes: 55 additions & 0 deletions .github/workflows/gitpublish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Publish Tag
on:
push:
branches:
- release

jobs:
job1:
name: Publish Tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: set_var
name: Get Version
run: |
content=`cat ./package.json`
# the following lines are only required for multi line json
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=packageJson::$content"
- name: Push Tag
id: tag
uses: anothrNick/github-tag-action@master
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
WITH_V: true
CUSTOM_TAG: "v${{ fromJson(steps.set_var.outputs.packageJson).version }}"
job2:
needs: job1
name: Publish Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: set_var
name: Get Version
run: |
content=`cat ./package.json`
# the following lines are only required for multi line json
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
# end of optional handling for multi line json
echo "::set-output name=packageJson::$content"
- name: Echo Debug
run: |
echo "${{ fromJson(steps.set_var.outputs.packageJson).version }}"
- name: Create GitHub release
uses: Roang-zero1/github-create-release-action@master
with:
prerelease_regex: ^v[0-9]\.[0-9]\.[0-9]\-
created_tag: v${{ fromJson(steps.set_var.outputs.packageJson).version }}
env:
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

## v1.0.0-beta.14

- Optimize code ⏩
- Add changelog.md 📑
- Add ClearChat and UserClearChat events 🔔
- Add timeout method, to timeout the annoying persons on chat 🔴
- Add ws.send, so now you can send direct websocket messages to twitchIRC 💌
- Minor fixes 🔹
- Minor bug fixes 🐜
- Improved documentation 📖
Loading

0 comments on commit 32498e8

Please sign in to comment.