-
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.
- Loading branch information
sazs
committed
Jan 6, 2021
0 parents
commit 6344001
Showing
68 changed files
with
2,990 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,47 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: 京豆昨日收益 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 23 * * *" | ||
watch: | ||
types: [started] | ||
repository_dispatch: | ||
types: jd_bean_change | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js 10.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.x | ||
- name: npm install | ||
run: | | ||
npm install | ||
- name: "运行 【京豆昨日收益】" | ||
run: | | ||
node onlyOneExecute.js | ||
env: | ||
JD_COOKIE: ${{ secrets.JD_COOKIE || github.event.client_payload.JD_COOKIE }} | ||
JD_DEBUG: ${{ secrets.JD_DEBUG || github.event.client_payload.JD_DEBUG }} | ||
JD_USER_AGENT: ${{ secrets.JD_USER_AGENT || github.event.client_payload.JD_USER_AGENT }} | ||
PUSH_KEY: ${{ secrets.PUSH_KEY || github.event.client_payload.PUSH_KEY }} | ||
BARK_PUSH: ${{ secrets.BARK_PUSH || github.event.client_payload.BARK_PUSH }} | ||
BARK_SOUND: ${{ secrets.BARK_SOUND || github.event.client_payload.BARK_SOUND }} | ||
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN || github.event.client_payload.TG_BOT_TOKEN }} | ||
TG_USER_ID: ${{ secrets.TG_USER_ID || github.event.client_payload.TG_USER_ID }} | ||
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN || github.event.client_payload.DD_BOT_TOKEN }} | ||
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET || github.event.client_payload.DD_BOT_SECRET }} | ||
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY || github.event.client_payload.IGOT_PUSH_KEY }} | ||
QQ_SKEY: ${{ secrets.QQ_SKEY || github.event.client_payload.QQ_SKEY }} | ||
QQ_MODE: ${{ secrets.QQ_MODE || github.event.client_payload.QQ_MODE }} | ||
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN || github.event.client_payload.PUSH_PLUS_TOKEN }} | ||
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER || github.event.client_payload.PUSH_PLUS_USER }} | ||
SYNCURL: https://github.com/lxk0301/jd_scripts/raw/master/jd_bean_change.js |
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 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: 京东首页领京豆 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "12 22 * * *" | ||
watch: | ||
types: [started] | ||
repository_dispatch: | ||
types: jd_bean_home | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js 10.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.x | ||
- name: npm install | ||
run: | | ||
npm install | ||
- name: "运行 【首页-领京豆】" | ||
run: | | ||
node onlyOneExecute.js | ||
env: | ||
JD_COOKIE: ${{ secrets.JD_COOKIE || github.event.client_payload.JD_COOKIE }} | ||
JD_DEBUG: ${{ secrets.JD_DEBUG || github.event.client_payload.JD_DEBUG }} | ||
JD_USER_AGENT: ${{ secrets.JD_USER_AGENT || github.event.client_payload.JD_USER_AGENT }} | ||
PUSH_KEY: ${{ secrets.PUSH_KEY || github.event.client_payload.PUSH_KEY }} | ||
BARK_PUSH: ${{ secrets.BARK_PUSH || github.event.client_payload.BARK_PUSH }} | ||
BARK_SOUND: ${{ secrets.BARK_SOUND || github.event.client_payload.BARK_SOUND }} | ||
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN || github.event.client_payload.TG_BOT_TOKEN }} | ||
TG_USER_ID: ${{ secrets.TG_USER_ID || github.event.client_payload.TG_USER_ID }} | ||
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN || github.event.client_payload.DD_BOT_TOKEN }} | ||
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET || github.event.client_payload.DD_BOT_SECRET }} | ||
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY || github.event.client_payload.IGOT_PUSH_KEY }} | ||
QQ_SKEY: ${{ secrets.QQ_SKEY || github.event.client_payload.QQ_SKEY }} | ||
QQ_MODE: ${{ secrets.QQ_MODE || github.event.client_payload.QQ_MODE }} | ||
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN || github.event.client_payload.PUSH_PLUS_TOKEN }} | ||
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER || github.event.client_payload.PUSH_PLUS_USER }} | ||
SYNCURL: https://github.com/lxk0301/jd_scripts/raw/master/jd_bean_home.js |
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,49 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: 京小超领蓝币 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "5 16 * * *" | ||
watch: | ||
types: [started] | ||
repository_dispatch: | ||
types: jd_blueCoin | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js 10.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.x | ||
- name: npm install | ||
run: | | ||
npm install | ||
- name: "运行【京小超领蓝币(小费)】" | ||
run: | | ||
node onlyOneExecute.js | ||
env: | ||
JD_COOKIE: ${{ secrets.JD_COOKIE || github.event.client_payload.JD_COOKIE }} | ||
JD_DEBUG: ${{ secrets.JD_DEBUG || github.event.client_payload.JD_DEBUG }} | ||
JD_USER_AGENT: ${{ secrets.JD_USER_AGENT || github.event.client_payload.JD_USER_AGENT }} | ||
PUSH_KEY: ${{ secrets.PUSH_KEY || github.event.client_payload.PUSH_KEY }} | ||
BARK_PUSH: ${{ secrets.BARK_PUSH || github.event.client_payload.BARK_PUSH }} | ||
BARK_SOUND: ${{ secrets.BARK_SOUND || github.event.client_payload.BARK_SOUND }} | ||
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN || github.event.client_payload.TG_BOT_TOKEN }} | ||
TG_USER_ID: ${{ secrets.TG_USER_ID || github.event.client_payload.TG_USER_ID }} | ||
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN || github.event.client_payload.DD_BOT_TOKEN }} | ||
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET || github.event.client_payload.DD_BOT_SECRET }} | ||
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY || github.event.client_payload.IGOT_PUSH_KEY }} | ||
QQ_SKEY: ${{ secrets.QQ_SKEY || github.event.client_payload.QQ_SKEY }} | ||
QQ_MODE: ${{ secrets.QQ_MODE || github.event.client_payload.QQ_MODE }} | ||
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN || github.event.client_payload.PUSH_PLUS_TOKEN }} | ||
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER || github.event.client_payload.PUSH_PLUS_USER }} | ||
MARKET_COIN_TO_BEANS: ${{ secrets.MARKET_COIN_TO_BEANS || github.event.client_payload.MARKET_COIN_TO_BEANS }} | ||
MARKET_REWARD_NOTIFY: ${{ secrets.MARKET_REWARD_NOTIFY || github.event.client_payload.MARKET_REWARD_NOTIFY }} | ||
SYNCURL: https://github.com/lxk0301/jd_scripts/raw/master/jd_blueCoin.js |
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 @@ | ||
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: 京东汽车 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "16 22 * * *" | ||
watch: | ||
types: [started] | ||
repository_dispatch: | ||
types: jd_car | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js 10.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.x | ||
- name: npm install | ||
run: | | ||
npm install | ||
- name: "运行 【京东汽车】" | ||
run: | | ||
node onlyOneExecute.js | ||
env: | ||
JD_COOKIE: ${{ secrets.JD_COOKIE || github.event.client_payload.JD_COOKIE }} | ||
JD_DEBUG: ${{ secrets.JD_DEBUG || github.event.client_payload.JD_DEBUG }} | ||
JD_USER_AGENT: ${{ secrets.JD_USER_AGENT || github.event.client_payload.JD_USER_AGENT }} | ||
PUSH_KEY: ${{ secrets.PUSH_KEY || github.event.client_payload.PUSH_KEY }} | ||
BARK_PUSH: ${{ secrets.BARK_PUSH || github.event.client_payload.BARK_PUSH }} | ||
BARK_SOUND: ${{ secrets.BARK_SOUND || github.event.client_payload.BARK_SOUND }} | ||
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN || github.event.client_payload.TG_BOT_TOKEN }} | ||
TG_USER_ID: ${{ secrets.TG_USER_ID || github.event.client_payload.TG_USER_ID }} | ||
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN || github.event.client_payload.DD_BOT_TOKEN }} | ||
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET || github.event.client_payload.DD_BOT_SECRET }} | ||
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY || github.event.client_payload.IGOT_PUSH_KEY }} | ||
QQ_SKEY: ${{ secrets.QQ_SKEY || github.event.client_payload.QQ_SKEY }} | ||
QQ_MODE: ${{ secrets.QQ_MODE || github.event.client_payload.QQ_MODE }} | ||
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN || github.event.client_payload.PUSH_PLUS_TOKEN }} | ||
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER || github.event.client_payload.PUSH_PLUS_USER }} | ||
SYNCURL: https://github.com/lxk0301/jd_scripts/raw/master/jd_car.js |
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,45 @@ | ||
name: 抽京豆 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "20 16 * * *" | ||
watch: | ||
types: [started] | ||
repository_dispatch: | ||
types: jd_club_lottery | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
steps: | ||
- name: Checkout codes | ||
uses: actions/checkout@v2 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
- name: npm install | ||
run: | | ||
npm install | ||
- name: "运行【抽京豆】" | ||
run: | | ||
node onlyOneExecute.js | ||
env: | ||
JD_COOKIE: ${{ secrets.JD_COOKIE || github.event.client_payload.JD_COOKIE }} | ||
JD_DEBUG: ${{ secrets.JD_DEBUG || github.event.client_payload.JD_DEBUG }} | ||
JD_USER_AGENT: ${{ secrets.JD_USER_AGENT || github.event.client_payload.JD_USER_AGENT }} | ||
PUSH_KEY: ${{ secrets.PUSH_KEY || github.event.client_payload.PUSH_KEY }} | ||
BARK_PUSH: ${{ secrets.BARK_PUSH || github.event.client_payload.BARK_PUSH }} | ||
BARK_SOUND: ${{ secrets.BARK_SOUND || github.event.client_payload.BARK_SOUND }} | ||
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN || github.event.client_payload.TG_BOT_TOKEN }} | ||
TG_USER_ID: ${{ secrets.TG_USER_ID || github.event.client_payload.TG_USER_ID }} | ||
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN || github.event.client_payload.DD_BOT_TOKEN }} | ||
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET || github.event.client_payload.DD_BOT_SECRET }} | ||
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY || github.event.client_payload.IGOT_PUSH_KEY }} | ||
QQ_SKEY: ${{ secrets.QQ_SKEY || github.event.client_payload.QQ_SKEY }} | ||
QQ_MODE: ${{ secrets.QQ_MODE || github.event.client_payload.QQ_MODE }} | ||
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN || github.event.client_payload.PUSH_PLUS_TOKEN }} | ||
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER || github.event.client_payload.PUSH_PLUS_USER }} | ||
SYNCURL: https://github.com/lxk0301/jd_scripts/raw/master/jd_club_lottery.js |
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,48 @@ | ||
name: 京东疯狂JOY | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 18 * * *" | ||
watch: | ||
types: [started] | ||
repository_dispatch: | ||
types: jd_crazy_joy | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
steps: | ||
- name: 拉取代码 | ||
uses: actions/checkout@v2 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
- name: 安装依赖包 | ||
run: | | ||
npm install | ||
- name: "运行【京东疯狂JOY】" | ||
run: | | ||
node onlyOneExecute.js | ||
env: | ||
JD_COOKIE: ${{ secrets.JD_COOKIE || github.event.client_payload.JD_COOKIE }} | ||
JD_DEBUG: ${{ secrets.JD_DEBUG || github.event.client_payload.JD_DEBUG }} | ||
JD_USER_AGENT: ${{ secrets.JD_USER_AGENT || github.event.client_payload.JD_USER_AGENT }} | ||
PUSH_KEY: ${{ secrets.PUSH_KEY || github.event.client_payload.PUSH_KEY }} | ||
BARK_PUSH: ${{ secrets.BARK_PUSH || github.event.client_payload.BARK_PUSH }} | ||
BARK_SOUND: ${{ secrets.BARK_SOUND || github.event.client_payload.BARK_SOUND }} | ||
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN || github.event.client_payload.TG_BOT_TOKEN }} | ||
TG_USER_ID: ${{ secrets.TG_USER_ID || github.event.client_payload.TG_USER_ID }} | ||
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN || github.event.client_payload.DD_BOT_TOKEN }} | ||
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET || github.event.client_payload.DD_BOT_SECRET }} | ||
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY || github.event.client_payload.IGOT_PUSH_KEY }} | ||
QQ_SKEY: ${{ secrets.QQ_SKEY || github.event.client_payload.QQ_SKEY }} | ||
QQ_MODE: ${{ secrets.QQ_MODE || github.event.client_payload.QQ_MODE }} | ||
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN || github.event.client_payload.PUSH_PLUS_TOKEN }} | ||
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER || github.event.client_payload.PUSH_PLUS_USER }} | ||
JDJOY_HELPSELF: ${{ secrets.JDJOY_HELPSELF || github.event.client_payload.JDJOY_HELPSELF }} | ||
JDJOY_APPLYJDBEAN: ${{ secrets.JDJOY_APPLYJDBEAN || github.event.client_payload.JDJOY_APPLYJDBEAN }} | ||
JDJOY_SHARECODES: ${{ secrets.JDJOY_SHARECODES || github.event.client_payload.JDJOY_SHARECODES }} | ||
SYNCURL: https://github.com/lxk0301/jd_scripts/raw/master/jd_crazy_joy.js |
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,45 @@ | ||
name: 京东疯狂JOY挂机 | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 18 * * *" | ||
watch: | ||
types: [started] | ||
repository_dispatch: | ||
types: jd_crazy_joy_coin | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
if: github.event.repository.owner.id == github.event.sender.id | ||
steps: | ||
- name: 拉取代码 | ||
uses: actions/checkout@v2 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12.x" | ||
- name: 安装依赖包 | ||
run: | | ||
npm install | ||
- name: "运行【京东疯狂JOY挂机】" | ||
run: | | ||
node onlyOneExecute.js | ||
env: | ||
JD_COOKIE: ${{ secrets.JD_COOKIE || github.event.client_payload.JD_COOKIE }} | ||
JD_DEBUG: ${{ secrets.JD_DEBUG || github.event.client_payload.JD_DEBUG }} | ||
JD_USER_AGENT: ${{ secrets.JD_USER_AGENT || github.event.client_payload.JD_USER_AGENT }} | ||
PUSH_KEY: ${{ secrets.PUSH_KEY || github.event.client_payload.PUSH_KEY }} | ||
BARK_PUSH: ${{ secrets.BARK_PUSH || github.event.client_payload.BARK_PUSH }} | ||
BARK_SOUND: ${{ secrets.BARK_SOUND || github.event.client_payload.BARK_SOUND }} | ||
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN || github.event.client_payload.TG_BOT_TOKEN }} | ||
TG_USER_ID: ${{ secrets.TG_USER_ID || github.event.client_payload.TG_USER_ID }} | ||
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN || github.event.client_payload.DD_BOT_TOKEN }} | ||
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET || github.event.client_payload.DD_BOT_SECRET }} | ||
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY || github.event.client_payload.IGOT_PUSH_KEY }} | ||
QQ_SKEY: ${{ secrets.QQ_SKEY || github.event.client_payload.QQ_SKEY }} | ||
QQ_MODE: ${{ secrets.QQ_MODE || github.event.client_payload.QQ_MODE }} | ||
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN || github.event.client_payload.PUSH_PLUS_TOKEN }} | ||
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER || github.event.client_payload.PUSH_PLUS_USER }} | ||
SYNCURL: https://github.com/lxk0301/jd_scripts/raw/master/jd_crazy_joy_coin.js |
Oops, something went wrong.