about summary refs log tree commit diff stats
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
authorBobIsMyManager <bimmgitsignature.nly8m@simplelogin.co>2022-07-26 22:28:50 +0100
committerBobIsMyManager <bimmgitsignature.nly8m@simplelogin.co>2022-07-26 22:28:50 +0100
commit2a0596f08fb54e2faef4bcb4548a28f5837fc067 (patch)
treecf5851f95c37da269a561623cee0d3967ca321ec /.github/workflows/main.yml
parentI should really inspect diffs before commiting (diff)
downloadlibredirect-2a0596f08fb54e2faef4bcb4548a28f5837fc067.zip
Many things
Made all instances updateable

Added hyperpipe

Closes https://github.com/libredirect/libredirect/issues/398

Added cloudtube

Closes https://github.com/libredirect/libredirect/issues/397

Start using prettier
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c63281a2..88edbe34 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -2,21 +2,21 @@ name: instances-updater
 
 on:
   schedule:
-    - cron: '10 22 */3 * *'
-  
+    - cron: "10 22 */3 * *"
+
   workflow_dispatch:
 
 jobs:
   build:
     runs-on: ubuntu-latest
-    steps: 
+    steps:
       - name: get repo content
         uses: actions/checkout@v2
 
       - name: setup python
         uses: actions/setup-python@v2
         with:
-          python-version: '3.8' # install the python version needed
+          python-version: "3.8" # install the python version needed
 
       - name: install python packages
         run: |
@@ -24,7 +24,7 @@ jobs:
           pip install requests bs4 colorama
       - name: run script
         run: python src/instances/get_instances.py
-      
+
       - name: commit files
         run: |
           git config --local user.email "action@github.com"