Skip to content

Commit

Permalink
初始版本
Browse files Browse the repository at this point in the history
  • Loading branch information
zhonghuaifang committed Mar 9, 2022
1 parent dc7b1d0 commit 17c31a5
Show file tree
Hide file tree
Showing 63 changed files with 7,310 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/pull.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: "1"
rules: # Array of rules
- base: master # Required. Target branch
upstream: BlueskyClouds:master # Required. Must be in the same fork network.
mergeMethod: merge # Optional, one of [none, merge, squash, rebase, hardreset], Default: none.
mergeUnstable: true # Optional, merge pull request even when the mergeable_state is not clean. Default: false
44 changes: 44 additions & 0 deletions .github/workflows/10000.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: 中国电信签到

on:
workflow_dispatch:
schedule:
- cron: "0 */8 * * *"
#电信经常签到不成功所以让他每八小时执行一下,一天三次
watch:
types: [started]

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 function/10000/10000.js
env:
TELECOM_MOBILE: ${{ secrets.TELECOM_MOBILE }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
QYWX_AM: ${{ secrets.QYWX_AM}}
QYWX_KEY: ${{ secrets.QYWX_KEY}}
TG_PROXY_HOST: ${{ secrets.TG_PROXY_HOST}}
TG_PROXY_PORT: ${{ secrets.TG_PROXY_PORT}}
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
#最后推送 2021年4月09日
42 changes: 42 additions & 0 deletions .github/workflows/bika.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: 哔咔漫画自动打哔咔

on:
workflow_dispatch:
schedule:
- cron: "01 04 * * *"
watch:
types: [started]

jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Checkout
uses: actions/checkout@v2

- name: "Set up Python"
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: "安装依赖包"
run: pip install -r ./requirements.txt

- name: "运行 哔咔漫画自动打哔咔"
run: python3 function/bika/bika.py
env:
BIKA_USER: ${{ secrets.BIKA_USER }}
BIKA_PASS: ${{ secrets.BIKA_PASS }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
QYWX_AM: ${{ secrets.QYWX_AM}}
#最后推送 2021年4月22日
45 changes: 45 additions & 0 deletions .github/workflows/bilibili.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: 哔哩哔哩签到

on:
workflow_dispatch:
schedule:
- cron: "5 16 * * *"
watch:
types: [started]

jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Checkout
uses: actions/checkout@v2

- name: "Set up Python"
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: "安装依赖包"
run: pip install -r ./requirements.txt

- name: "运行 哔哩哔哩签到"
run: python3 function/bilibili/bilibili.py
env:
BILI_USER: ${{ secrets.BILI_USER }}
BILI_PASS: ${{ secrets.BILI_PASS }}
BILI_COOKIE: ${{ secrets.BILI_COOKIE }}
BILI_NUM: ${{ secrets.BILI_NUM }}
BILI_TYPE: ${{ secrets.BILI_TYPE }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
QYWX_AM: ${{ secrets.QYWX_AM}}
#最后推送 2021年4月22日
43 changes: 43 additions & 0 deletions .github/workflows/iqiyi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: 爱奇艺会员签到

on:
workflow_dispatch:
schedule:
- cron: "*/20 16 * * *"
watch:
types: [started]

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 function/iQIYI-DailyBonus/iqiyi.js
env:
iQIYI_COOKIE: ${{ secrets.iQIYI_COOKIE }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
QYWX_KEY: ${{ secrets.QYWX_KEY}}
QYWX_AM: ${{ secrets.QYWX_AM}}
TG_PROXY_HOST: ${{ secrets.TG_PROXY_HOST}}
TG_PROXY_PORT: ${{ secrets.TG_PROXY_PORT}}
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
#最后推送 2021年4月09日
29 changes: 29 additions & 0 deletions .github/workflows/repo_sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 自动同步-Actions
on:
schedule:
- cron: '1 0,8,15 * * *'
workflow_dispatch:
watch:
types: started
repository_dispatch:
types: 同步仓库
jobs:
repo-sync:
env:
PAT: ${{ secrets.PAT || github.event.client_payload.PAT }} #此处PAT需要申请,教程详见:https://www.jianshu.com/p/bb82b3ad1d11
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false

- name: sync scripts
uses: repo-sync/github-sync@v2
if: env.PAT
with:
source_repo: "https://github.com/BlueSkyClouds/My-Actions.git"
source_branch: "master"
destination_branch: "master"
github_token: ${{ secrets.PAT || github.event.client_payload.PAT }}
#最后推送 2021年4月09日
44 changes: 44 additions & 0 deletions .github/workflows/tieba.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: 百度签到

on:
workflow_dispatch:
schedule:
- cron: "30 04 * * *"
watch:
types: [started]

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 function/tieba/tieba.js
env:
BDUSS: ${{ secrets.BDUSS }}
JUMP: ${{ secrets.BDUSS-JUMP }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
QYWX_KEY: ${{ secrets.QYWX_KEY}}
QYWX_AM: ${{ secrets.QYWX_AM}}
TG_PROXY_HOST: ${{ secrets.TG_PROXY_HOST}}
TG_PROXY_PORT: ${{ secrets.TG_PROXY_PORT}}
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
#最后推送 2021年4月09日
43 changes: 43 additions & 0 deletions .github/workflows/v2ex.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: V2ex签到

on:
workflow_dispatch:
schedule:
- cron: "0 14 * * *"
watch:
types: [started]

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: "运行【V2ex自动签到】"
run: |
node function/v2ex/v2ex.js
env:
V2EXCK: ${{ secrets.V2EXCK }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
QYWX_KEY: ${{ secrets.QYWX_KEY}}
QYWX_AM: ${{ secrets.QYWX_AM}}
TG_PROXY_HOST: ${{ secrets.TG_PROXY_HOST}}
TG_PROXY_PORT: ${{ secrets.TG_PROXY_PORT}}
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
#最后推送 2021年4月09日
44 changes: 44 additions & 0 deletions .github/workflows/v_video.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: 腾讯视频签到

on:
workflow_dispatch:
schedule:
- cron: "30 14 * * *"
watch:
types: [started]

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 function/q_video/q_video.js
env:
V_REF_URL: ${{ secrets.V_REF_URL }}
V_COOKIE: ${{ secrets.V_COOKIE }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
QYWX_KEY: ${{ secrets.QYWX_KEY}}
QYWX_AM: ${{ secrets.QYWX_AM}}
TG_PROXY_HOST: ${{ secrets.TG_PROXY_HOST}}
TG_PROXY_PORT: ${{ secrets.TG_PROXY_PORT}}
IGOT_PUSH_KEY: ${{ secrets.IGOT_PUSH_KEY}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
#最后推送 2021年4月09日
41 changes: 41 additions & 0 deletions .github/workflows/wps.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: WPS自动邀请

on:
workflow_dispatch:
schedule:
- cron: "45 0 * * *"
watch:
types: [started]

jobs:
build:
runs-on: ubuntu-latest
if: github.event.repository.owner.id == github.event.sender.id
steps:
- name: Checkout
uses: actions/checkout@v2

- name: "Set up Python"
uses: actions/setup-python@v1
with:
python-version: 3.9

- name: "安装依赖包"
run: pip install -r ./requirements.txt

- name: "运行 WPS自动邀请"
run: python3 function/wps/wps_invitation.py
env:
WPS_KEY: ${{ secrets.WPS_KEY }}
SEND_KEY: ${{ secrets.SEND_KEY }}
PUSH_KEY: ${{ secrets.PUSH_KEY }}
BARK_PUSH: ${{ secrets.BARK_PUSH }}
PUSH_PLUS_TOKEN: ${{ secrets.PUSH_PLUS_TOKEN}}
PUSH_PLUS_USER: ${{ secrets.PUSH_PLUS_USER}}
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_USER_ID: ${{ secrets.TG_USER_ID }}
BARK_SOUND: ${{ secrets.BARK_SOUND }}
DD_BOT_TOKEN: ${{ secrets.DD_BOT_TOKEN }}
DD_BOT_SECRET: ${{ secrets.DD_BOT_SECRET }}
QYWX_AM: ${{ secrets.QYWX_AM}}
#最后推送 2021年4月22日
Loading

0 comments on commit 17c31a5

Please sign in to comment.