Compare commits

...

11 Commits

Author SHA1 Message Date
GitHub Action
4ae3541f20 定期更新数据并生成 gfw.pac 2024-11-21 00:33:34 +00:00
GitHub Action
58d793c13c 定期更新数据并生成 gfw.pac 2024-11-14 00:31:57 +00:00
GitHub Action
340754f759 定期更新数据并生成 gfw.pac 2024-11-07 00:31:32 +00:00
GitHub Action
d36a5097f5 定期更新数据并生成 gfw.pac 2024-10-31 00:32:39 +00:00
GitHub Action
03998c2db0 定期更新数据并生成 gfw.pac 2024-10-24 00:31:52 +00:00
zhiyi
bc33e69e7d fix auto-generate-pac bug 2024-10-17 16:18:15 +08:00
GitHub Action
fcd1ce19aa 自动生成 gfw.pac: onedrive客户端部分域名加入直连名单 2024-10-17 07:35:59 +00:00
zhiyi
d923c54720 onedrive客户端部分域名加入直连名单 2024-10-17 15:35:36 +08:00
GitHub Action
16f2713aa1 定期更新数据并生成 gfw.pac 2024-10-17 00:31:46 +00:00
zhiyi
07a9e9773b 优化workflow 2024-10-10 20:14:07 +08:00
zhiyi
f827e221e7 优化workflow 2024-10-10 17:35:05 +08:00
4 changed files with 907 additions and 500 deletions

View File

@@ -4,12 +4,13 @@ on:
schedule:
- cron: '10 0 * * 4'
push:
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'gfw.pac'
- '.gitignore'
- '.github/**'
paths:
- 'gfw-pac.py'
- 'pac-template'
- 'local-tlds.txt'
- 'direct-domains.txt'
- 'proxy-domains.txt'
- 'cidrs-cn.txt'
workflow_dispatch:
jobs:
@@ -28,7 +29,7 @@ jobs:
- name: Commit and push changes
run: |
last_commit_message=$(git log -1 --pretty=%B)
$GITHUB_EVENT_NAME == 'schedule' && commit_message="定期更新数据并生成 gfw.pac" || commit_message="自动生成 gfw.pac: $last_commit_message"
commit_message=$([[ "${{ github.event_name }}" == "schedule" ]] && echo "定期更新数据并生成 gfw.pac" || echo "自动生成 gfw.pac: $last_commit_message")
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A

View File

File diff suppressed because it is too large Load Diff

View File

@@ -129,4 +129,10 @@ browser.events.data.microsoft.com
ocsp.globalsign.com
ocsp2.globalsign.com
ocsp.digicert.cn
ocsp.dcocsp.cn
ocsp.dcocsp.cn
api.onedrive.com
storage.live.com
skyapi.live.net
roaming.officeapps.live.com
blob.core.windows.net
default.exp-tas.com

View File

File diff suppressed because one or more lines are too long