forked from felixonmars/dnsmasq-china-list
-
Notifications
You must be signed in to change notification settings - Fork 59
46 lines (38 loc) · 1.08 KB
/
convert.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Convert Conf Files
on:
schedule:
- cron: "0 1 * * *" # every day
workflow_dispatch:
jobs:
convert_conf_files:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.9
- name: Install dependencies
run: pip3 install glob2
- name: Convert Conf Files
env:
CN_DNS: ${{ secrets.CN_DNS }}
THE_DNS: ${{ secrets.THE_DNS }}
run: python convert.py
- name: Check for changes
run: |
if ! git diff --quiet; then
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
current_time=$(date +'%Y-%m-%d %H:%M:%S')
git add .
git commit -m "Convert conf files to txt - $current_time"
else
echo "No changes to commit."
fi
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master