-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from twitchapis/main
Release beta 14
- Loading branch information
Showing
30 changed files
with
1,776 additions
and
558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 📖 |
Oops, something went wrong.