removed uns

This commit is contained in:
hexated 2022-11-07 17:22:04 +07:00
parent 13b34f3abe
commit b6ee928275
15 changed files with 0 additions and 10360 deletions

View file

@ -1,30 +0,0 @@
name: Update channel domains
on:
workflow_dispatch:
schedule:
- cron: '30 14 * * *'
jobs:
update:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: pip install requests
- name: Update domains
run: python updateDomains.py
- name: Commit & Push changes
uses: actions-js/push@master
with:
message: "Domains Updated"
branch: "main"
github_token: ${{ secrets.GITHUB_TOKEN }}