Skip to content

Convert Conf Files #334

Convert Conf Files

Convert Conf Files #334

Workflow file for this run

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/[email protected]
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 "[email protected]"
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/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master