Convert Conf Files #330
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |