Skip to content

Convert Conf Files

Convert Conf Files #1

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@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: pip3 install glob2
- name: Convert Conf Files
env:
DNS_URL: ${{ secrets.DNS_URL }}
run: python convert.py
- name: Commit changes
run: |
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"
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master