-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into AutoGenerator
- Loading branch information
Showing
47 changed files
with
18,273 additions
and
0 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,42 @@ | ||
name: Automatically Approve / Merge PR | ||
on: | ||
pull_request: | ||
|
||
permissions: | ||
# Permission to trigger the minify workflow | ||
actions: write | ||
pull-requests: write | ||
|
||
jobs: | ||
Auto_Approve: | ||
name: Auto Approve | ||
runs-on: ubuntu-latest | ||
# These participants were assessed and allowed to skip the review. | ||
# Please contact jim60105 if you have any questions. | ||
if: github.actor == 'jim60105' || github.actor == 'ralfjr' | ||
steps: | ||
- name: Auto approve | ||
uses: hmarr/auto-approve-action@v4 | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
|
||
Auto_Merge_PR: | ||
name: Auto Merge PR | ||
runs-on: ubuntu-latest | ||
needs: "Auto_Approve" | ||
steps: | ||
- name: Git Auto Merge | ||
uses: plm9606/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
merge-method: merge | ||
reviewers-number: 0 | ||
label-name: "automerge" | ||
|
||
- name: Remove label | ||
if: ${{ success() }} | ||
uses: buildsville/[email protected] | ||
with: | ||
token: ${{secrets.GITHUB_TOKEN}} | ||
label: "automerge" | ||
type: remove |
Binary file not shown.
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,47 @@ | ||
name: Create RadioQTama Subtitle | ||
|
||
on: | ||
push: | ||
branches: [QuonTama] | ||
# schedule: | ||
# - cron: '0 0 * * *' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
actions: write | ||
pull-requests: write | ||
|
||
jobs: | ||
Create_RadioQTama_Subtitle: | ||
runs-on: windows-latest # dotnet SDK built-in | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: QuonTama | ||
|
||
# If no changes have been made, the program will exit with error code 80, and terminate CI. | ||
- name: Fetch and recreate RadioQTama subtitles | ||
shell: cmd | ||
run: "call .github\\workflows\\CreateRadioQTamaSubtitles.exe" | ||
|
||
- name: Git Auto Commit | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
branch: QuonTama | ||
commit_message: "Github Action: Fetch and recreate RadioQTama subtitles" | ||
commit_user_name: Github Action Bot # defaults to "GitHub Actions" | ||
commit_author: Github Action Bot <[email protected]> # defaults to author of the commit that triggered the run | ||
|
||
Auto_PR: | ||
needs: Create_RadioQTama_Subtitle | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: QuonTama | ||
|
||
- name: pull-request | ||
run: | | ||
gh_pr_up() { gh pr create $* || gh pr edit $* } | ||
gh_pr_up --title "QuonTama to master auto PR" --body ":robot: Automated PR from **QuonTama** to **master**" --base master --head QuonTama |
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,20 @@ | ||
name: Fetch Lyrics | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
permissions: | ||
actions: write | ||
|
||
jobs: | ||
call-workflow: | ||
name: Dispatch to `Lyrics` | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Repository Dispatch | ||
env: | ||
GH_TOKEN: ${{ secrets.CR_PAT }} | ||
run: | | ||
gh workflow run FetchLyrics.yml -R YoutubeClipPlaylist/Lyrics |
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,18 @@ | ||
name: JSON Syntax Check | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'AutoGenerator/**' | ||
|
||
jobs: | ||
json-syntax-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: json-syntax-check | ||
uses: limitusus/json-syntax-check@v1 | ||
env: | ||
BASE: ${{ github.head_ref || github.ref_name }} | ||
with: | ||
pattern: "\\.jsonc$" |
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,31 @@ | ||
name: Minify | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Minify_Action: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- uses: zofrex/mirror-branch@v1 | ||
with: | ||
target-branch: minify | ||
|
||
# Use https://github.com/Josee9988/MinifyAllCli | ||
- name: Minify Action | ||
run: 'npx @josee9988/minifyall -d .' | ||
|
||
- name: Git Auto Commit | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
branch: minify | ||
commit_message: "Github Action: Auto Minified HTML CSS JSON JSONC" | ||
commit_user_name: Minify Action Bot # defaults to "GitHub Actions" | ||
commit_author: Minify Action Bot <[email protected]> # defaults to author of the commit that triggered the run |
Large diffs are not rendered by default.
Oops, something went wrong.
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,32 @@ | ||
[ | ||
//2021.02.17 2月の歌枠【Vtuber】 | ||
["RSXZsTJesw4", 1105, 1434, "林檎売りの泡沫少女"], | ||
["RSXZsTJesw4", 1819, 2046, "告白ライバル宣言"], | ||
["RSXZsTJesw4", 2283, 2497, "醜い生き物"], | ||
["RSXZsTJesw4", 2672, 2854, "ルマ"], | ||
["RSXZsTJesw4", 3236, 3405, "回る空うさぎ"], | ||
["RSXZsTJesw4", 3763, 4018, "To see the future"], | ||
["RSXZsTJesw4", 4200, 4529, "アヤノの幸福理論"], | ||
["RSXZsTJesw4", 4981, 5266, "インタビュア"], | ||
["RSXZsTJesw4", 5519, 5746, "廻廻奇譚"], | ||
["RSXZsTJesw4", 6189, 6406, "ハッピーシンセサイザ"], | ||
|
||
//2021.01.08 トワイライト急行【オリジナルMV】歌ってみた | ||
["enUcs0w45JA", 0, 0, "トワイライト急行"], | ||
|
||
//2020.12.06 12月の歌枠【HoneyWorks縛り】 | ||
["0uHi0F7NskA", 599, 862, "私、アイドル宣言"], | ||
["0uHi0F7NskA", 1249, 1495, "幸せ。"], | ||
["0uHi0F7NskA", 1675, 1912, "金曜日のおはよう-another story-"], | ||
["0uHi0F7NskA", 2159, 2418, "ワタシノテンシ"], | ||
["0uHi0F7NskA", 2740, 2955, "ヒロイン育成計畫"], | ||
["0uHi0F7NskA", 3126, 3325, "初戀の絵本"], | ||
["0uHi0F7NskA", 3630, 3872, "戀色に咲け。"], | ||
["0uHi0F7NskA", 4495, 4750, "病名戀ワズライ"], | ||
["0uHi0F7NskA", 5251, 5502, "可愛くなりたい"], | ||
["0uHi0F7NskA", 5715, 5960, "ファンサ"], | ||
["0uHi0F7NskA", 6372, 6555, "ルマ"], | ||
|
||
// 2020.11.01 【CrazyPartyNight】歌ってみた | ||
["QxPgSLRP_QI", 0, 0, "CrazyPartyNight"] | ||
] |
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,71 @@ | ||
/** | ||
* 歌單格式為JSON with Comments | ||
* ["VideoID", StartTime, EndTime, "Title"] | ||
* VideoID: 必須用引號包住,為字串型態。 | ||
* StartTime: 只能是非負數。如果要從頭播放,輸入0 | ||
* EndTime: 只能是非負數。如果要播放至尾,輸入0 | ||
* Title?: 必須用引號包住,為字串型態 | ||
* SubSrc?: 必須用雙引號包住,為字串型態,可選 | ||
*/ | ||
[ | ||
// 在久遠たま歌單 | ||
// // 歌ってみた GETCHA! | ||
// ["P5bUa9qky-Y", 0, 0, "GETCHA!"], | ||
|
||
// 歌ってみた ジレンマ | ||
["vE4CSN_-Vi4", 0, 0, "ジレンマ"], | ||
|
||
// 歌ってみた Sing My Pleasure | ||
["cUwS-ai-5pM", 0, 0, "Sing My Pleasure"], | ||
|
||
// 歌ってみた ダイアモンド クレバス | ||
["wQyAFTXDpP0", 0, 0, "ダイアモンド クレバス"], | ||
|
||
// 刪檔 | ||
// // 2022/1/17 改めまして、はじめまして | ||
// // ["Lp0GnbqqUjQ", 1177, 1484, "紅蓮の弓矢"], | ||
// // ["Lp0GnbqqUjQ", 1605, 1830, "往け"], | ||
// // ["Lp0GnbqqUjQ", 2005, 2276, "アンコール"], | ||
// // ["Lp0GnbqqUjQ", 2488, 2690, "神っぽいな"], | ||
// // ["Lp0GnbqqUjQ", 2989, 3251, "破滅の純情"], | ||
// // ["Lp0GnbqqUjQ", 3384, 3629, "白金ディスコも無ェ (IKZO吉幾三)"], | ||
// // ["Lp0GnbqqUjQ", 3803, 4031, "虎視眈々"], | ||
// // ["Lp0GnbqqUjQ", 4180, 4430, "夜に駆ける THE HOME TAKE"], | ||
// // ["Lp0GnbqqUjQ", 4658, 4901, "テルーの唄 (Acapella)"], | ||
// // ["Lp0GnbqqUjQ", 5064, 5340, "Ghost of a smile (Acapella)"], | ||
// // ["Lp0GnbqqUjQ", 5432, 5648, "ダダダダ天使"], | ||
// // ["Lp0GnbqqUjQ", 5787, 5974, "フォニイ"], | ||
// // ["Lp0GnbqqUjQ", 6035, 6313, "アゲハ蝶"], | ||
// // ["Lp0GnbqqUjQ", 6364, 6622, "サウダージ"], | ||
// // ["Lp0GnbqqUjQ", 6682, 6930, "DAYS"], | ||
// // ["Lp0GnbqqUjQ", 6935, 7150, "COLORS"], | ||
// // ["Lp0GnbqqUjQ", 7287, 7504, "HOT LIMIT"], | ||
// // ["Lp0GnbqqUjQ", 7506, 7676, "夜もすがら君想ふ ED"] | ||
|
||
// 歌ってみた クリスマスソング | ||
["hKDesRId99k", 0, 0, "クリスマスソング"], | ||
|
||
// 歌ってみた 残響散歌 | ||
["4DIzrQhcMu4", 0, 0, "残響散歌"], | ||
|
||
// 歌ってみた アンコール | ||
["okvm6q5bBAY", 0, 0, "アンコール"], | ||
|
||
// 歌ってみた あの夢をなぞって | ||
["GIWOvfSst9E", 0, 0, "あの夢をなぞって"], | ||
|
||
// 歌ってみた 命のユースティティア | ||
["KtQ0UgWNpHg", 0, 0, "命のユースティティア"], | ||
|
||
// 歌ってみた 三原色 | ||
["TfZ_I9bmj_w", 0, 0, "三原色"], | ||
|
||
// 歌ってみた 阿修羅ちゃん | ||
["0RZgRYvF4Lo", 0, 0, "阿修羅ちゃん"], | ||
|
||
// 歌ってみた ロミオとシンデレラ | ||
["-_nxAt_M_lI", 0, 0, "ロミオとシンデレラ"], | ||
|
||
// 歌ってみた フォニイ | ||
["NIS1CFTQ5W0", 0, 0, "フォニイ"] | ||
] |
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,43 @@ | ||
/** | ||
* 歌單格式為JSON with Comments | ||
* ["VideoID", StartTime, EndTime, "Title"] | ||
* VideoID: 必須用引號包住,為字串型態。 | ||
* StartTime: 只能是非負數。如果要從頭播放,輸入0 | ||
* EndTime: 只能是非負數。如果要播放至尾,輸入0 | ||
* Title?: 必須用引號包住,為字串型態 | ||
* SubSrc?: 必須用雙引號包住,為字串型態,可選 | ||
*/ | ||
[ | ||
//移除 | ||
// // 2021/11/13 始めました!!!!!!!!! / IROALIVE | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#1", 450, 637, "ケロッ!とマーチ"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#1", 930, 1197, "フラジール"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#1", 1300, 1567, "色彩"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#1", 1917, 2163, "I SAY YES"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#1", 2265, 2538, "Sincerely"], | ||
// // ["https://twitcasting.tv/iroa_kuma/movie/709500410#1", 2960, 3178, "三原色"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#2", 503, 733, "ハッピーシンセサイザ"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#2", 1027, 1261, "ウミユリ海底譚"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#2", 1390, 1580, "いかないで"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/709500410#2", 1707, 1949, "たった一つの想い"], | ||
// // ["https://twitcasting.tv/iroa_kuma/movie/709500410#2", 2209, 2425, "ダダダダ天使"], | ||
// // ["https://twitcasting.tv/iroa_kuma/movie/709500410#2", 2496, 2666, "夜もすがら君想ふ ED"], | ||
|
||
//移除 | ||
// // 2021/11/5 はじめまして / IROALIVE | ||
// // ["https://twitcasting.tv/iroa_kuma/movie/708454726#1", 1390, 1578, "フォニイ"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#1", 1911, 2151, "千本桜"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#1", 2260, 2559, "会いたい"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#1", 2698, 2884, "脱法ロック"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#1", 3096, 3327, "テロル"], | ||
// // ["https://twitcasting.tv/iroa_kuma/movie/708454726#1", 3471, 0, "フィクサー"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 224, 504, "Deal with the devil"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 666, 889, "吉原ラメント"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 1147, 1337, "東京テディベア"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 1758, 1974, "深海少女"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 2130, 2308, "ヴァンパイア"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 2575, 2839, "シリョクケンサ"], | ||
// ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 3000, 3255, "ワールドイズマイン"] | ||
// // ["https://twitcasting.tv/iroa_kuma/movie/708454726#2", 3413, 0, "踊"] | ||
// // ["https://twitcasting.tv/iroa_kuma/movie/708454726#3", 110, 280, "夜もすがら君想ふ ED"] | ||
] |
Oops, something went wrong.