├── .github
├── FUNDING.yml
├── workflows
│ └── run.yml
└── ccaeo.sh
├── url
├── v3
├── fengguo-sjgz.ini
├── README.md
├── v2
├── .ccaeo.log
├── v1
├── v2ray
├── surfboard
└── clash
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: some6508
2 |
--------------------------------------------------------------------------------
/url:
--------------------------------------------------------------------------------
1 | https://raw.githubusercontent.com/some6508/all/master/v1|https://raw.githubusercontent.com/some6508/all/master/c1|https://raw.githubusercontent.com/some6508/all/master/v2|https://raw.githubusercontent.com/some6508/all/master/v3|
--------------------------------------------------------------------------------
/v3:
--------------------------------------------------------------------------------
1 | aHlzdGVyaWE6Ly93d3cyLmR0a3U0OC54eXo6MjIzMzQ/YXV0aD1kb25ndGFpd2FuZy5jb20maW5zZWN1cmU9MSZ1cG1icHM9NTAmZG93bm1icHM9ODAmYWxwbj1oMyZvYmZzPW5vbmUmcHJvdG9jb2w9dWRwJmZhc3RvcGVuPTEjJUU4JUFGJUI3JUU1JThBJUEwJUU1JTg1JUE1JUU2JTg4JTkxJUU0JUJCJUFDJUU3JTlBJTg0JUU4JTgxJThBJUU1JUE0JUE5JUU3JUJFJUE0JUU3JUJCJTg0JUYwJTlGJTkyJUFDCmh0dHBzOi8vZDNkM0xtTm9jbTl0WlMxb1pXeHdaWEl1WTJNNk1qRTRNekE/bWV0aG9kPWF1dG8jaHR0cHM6Ly90Lm1lL2pzbnpr
2 |
--------------------------------------------------------------------------------
/fengguo-sjgz.ini:
--------------------------------------------------------------------------------
1 | [custom]
2 | ;by url:https://fg666.coding.net/p/fq/d/ini/git/raw/master/fengguo-sjgz.ini
3 | [custom]
4 | surge_ruleset=DIRECT,https://cdn.staticaly.com/gh/ACL4SSR/ACL4SSR/master/Clash/ChinaDomain.list
5 | surge_ruleset=DIRECT,https://cdn.staticaly.com/gh/ACL4SSR/ACL4SSR/master/Clash/ChinaCompanyIp.list
6 | surge_ruleset=DIRECT,https://cdn.staticaly.com/gh/ACL4SSR/ACL4SSR/master/Clash/LocalAreaNetwork.list
7 | surge_ruleset=全局设置,https://cdn.staticaly.com/gh/Meilieage/webcdn/main/rule/list/Emby.list
8 | surge_ruleset=全局设置,https://cdn.staticaly.com/gh/ACL4SSR/ACL4SSR/master/Clash/ProxyMedia.list
9 | surge_ruleset=全局设置,https://cdn.staticaly.com/gh/ACL4SSR/ACL4SSR/master/Clash/ProxyGFWlist.list
10 | surge_ruleset=DIRECT,[]GEOIP,CN
11 | surge_ruleset=其他设置,[]FINAL
12 | custom_proxy_group=全局设置`select`[]自动选择`.*
13 | custom_proxy_group=自动选择`url-test`.*`http://www.gstatic.com/generate_204`150
14 | custom_proxy_group=其他设置`select`[]全局设置`[]DIRECT
15 | enable_rule_generator=true
16 | overwrite_original_rules=true
17 |
--------------------------------------------------------------------------------
/.github/workflows/run.yml:
--------------------------------------------------------------------------------
1 |
2 | name: all
3 |
4 | on:
5 | push:
6 | branches: [ master ]
7 | pull_request:
8 | branches: [ master ]
9 | watch:
10 | types: [started]
11 | # schedule:
12 | # - cron: '0 */1 * * *'
13 | workflow_dispatch:
14 |
15 | env:
16 | TZ: Asia/Shanghai
17 |
18 | jobs:
19 |
20 | build:
21 | name: Build on ${{ matrix.os }}
22 | runs-on: ${{ matrix.os }}
23 | if: ${{ !startsWith(github.event.head_commit.message, '[skip ci]') }}
24 | strategy:
25 | fail-fast: false
26 | matrix:
27 | os: [ ubuntu-latest ]
28 |
29 | steps:
30 | - name: 运行操作
31 | uses: actions/checkout@v2
32 | with:
33 | persist-credentials: false
34 | fetch-depth: 0
35 |
36 | - name: 安装 curl wget
37 | run: |
38 | sudo apt-get install -y curl wget
39 |
40 | - name: 运行脚本
41 | run: |
42 | bash ./.github/ccaeo.sh
43 |
44 | - name: 设置上传机器人
45 | run: |
46 | git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
47 | git config --global user.name "github-actions"
48 | # git config --global user.email "actions@github.com"
49 | # git config --global user.name "actions-user"
50 |
51 | - name: 添加上传文件
52 | run: |
53 | git add .
54 | git status
55 | git commit -m "$(date '+%Y年%m月%d日·周%u·%H点%M分%S秒.%3N毫秒')" -a
56 |
57 | - name: 上传调试日志
58 | uses: actions/upload-artifact@v2
59 | with:
60 | name: ccaeo.log
61 | path: './.ccaeo.log'
62 |
63 | - name: 上传文件clash
64 | uses: actions/upload-artifact@v2
65 | with:
66 | name: clash
67 | path: './clash'
68 |
69 | - name: 上传文件v2ray
70 | uses: actions/upload-artifact@v2
71 | with:
72 | name: v2ray
73 | path: './v2ray'
74 |
75 | - name: 上传文件surfboard
76 | uses: actions/upload-artifact@v2
77 | with:
78 | name: surfboard
79 | path: './surfboard'
80 |
81 | - name: 开始上传到仓库
82 | uses: ad-m/github-push-action@master
83 | with:
84 | github_token: ${{ secrets.GITHUB_TOKEN }}
85 | branch: ${{ github.ref }}
86 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 每`1`小时更新节点|[ 到底部 ](#bottom)
2 | ## 触发运行
3 | > started by lougu
4 | ## 可点击`Star`更新节点
5 | 「 点击展开 更新时间 」
6 |
7 | ****
8 | |最近更新时间|
9 | | :----: |
10 | |2024年06月20日·周4·09点39分12秒.880毫秒|
11 | |下次更新时间|
12 | 2024年06月20日·周4·10点39分12秒.883毫秒
13 |
14 |
15 |
16 | ****
17 | 「 点击展开 订阅链接 」
18 |
19 | ****
20 | | π |原链接|加速①|加速②|
21 | | :----: | :----: | :----: | :----: |
22 | | 1 |[raw](https://raw.githubusercontent.com/some6508/all/master/clash)|[jsdelivr](https://cdn.jsdelivr.net/gh/some6508/all@master/clash)|[staticdn](https://raw.staticdn.net/some6508/all/master/clash)|
23 | | 2 |[raw](https://raw.githubusercontent.com/some6508/all/master/v2ray)|[jsdelivr](https://cdn.jsdelivr.net/gh/some6508/all@master/v2ray)|[staticdn](https://raw.staticdn.net/some6508/all/master/v2ray)|
24 | | 3 |[raw](https://raw.githubusercontent.com/some6508/all/master/surfboard)|[jsdelivr](https://cdn.jsdelivr.net/gh/some6508/all@master/surfboard)|[staticdn](https://raw.staticdn.net/some6508/all/master/surfboard)|
25 |
26 | ****
27 | ````
28 | https://raw.githubusercontent.com/some6508/all/master/clash
29 | https://raw.githubusercontent.com/some6508/all/master/v2ray
30 | https://raw.githubusercontent.com/some6508/all/master/surfboard
31 |
32 | ````
33 |
34 |
35 | ****
36 | 「 点击展开 节点转换 」
37 |
38 | ****
39 | |订阅转换|
40 | | :----: |
41 | |https://sub.v1.mk/|
42 | |http://sub.443.mba/|
43 | |https://bianyuan.xyz/|
44 | |https://acl4ssr-sub.github.io/|
45 | |https://ssc.sihai.gq/|
46 | |https://subs.cycxtit.ga/|
47 | |http://subconver111.coolpage.biz/|
48 |
49 | ****
50 | ````
51 | https://sub.v1.mk/
52 | http://sub.443.mba/
53 | https://bianyuan.xyz/
54 | https://acl4ssr-sub.github.io/
55 | https://ssc.sihai.gq/
56 | https://subs.cycxtit.ga/
57 | http://subconver111.coolpage.biz/
58 |
59 | ````
60 |
61 |
62 | ****
63 |
64 | ## 统计`Star`人数
65 | [](https://starchart.cc/some6508/all)
66 |
67 | ****
68 |
69 | ## 记录`Star`人员
70 | [](https://github.com/some6508/all/stargazers)
71 |
72 | ****
73 |
74 | ## 记录`Fork`人员|[ 到顶部 ](#top)
75 | [](https://github.com/some6508/all/network/members)
76 |
77 | ****
78 |
--------------------------------------------------------------------------------
/.github/ccaeo.sh:
--------------------------------------------------------------------------------
1 | echo "::notice::$(date '+%Y年%m月%d日·周%u·%H点%M分%S秒.%3N毫秒')"
2 | echo "::notice::https://github.com/some6508/all/archive/$(curl -s 'https://api.github.com/repos/some6508/all/commits' | grep -m 1 'sha' | sed 's/.*"sha": "//g; s/",//g').zip"
3 | home=`pwd`
4 | exec 2>$home/.ccaeo.log
5 | set -x
6 | PS4='$LINENO: '
7 | cd $home
8 | rm -rf $home/c* $home/v* $home/url
9 | ec() { echo "$(date '+%M分%S秒.%3N毫秒') $@"; }
10 | CURL() {
11 | [[ -z $2 ]] && ec '!没有下载链接' && return 1
12 | curl -s -L "$2" | egrep -qi '