forked from Mirrors/cloudflare-ddns-docker
Compare commits
1 Commits
86fe033d7d
...
80fb03975d
Author | SHA1 | Date | |
---|---|---|---|
80fb03975d |
@ -1,19 +0,0 @@
|
|||||||
name: Gitea Actions Demo
|
|
||||||
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
Explore-Gitea-Actions:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
|
||||||
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
|
||||||
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
|
||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
|
||||||
- name: List files in the repository
|
|
||||||
run: |
|
|
||||||
ls ${{ gitea.workspace }}
|
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
@ -1 +0,0 @@
|
|||||||
[]
|
|
@ -1,14 +1,13 @@
|
|||||||
import logging
|
import logging
|
||||||
from os import environ
|
from os import environ
|
||||||
from typing import Tuple
|
from typing import Tuple
|
||||||
from dotenv import load_dotenv
|
|
||||||
|
|
||||||
import click
|
import click
|
||||||
from cloudflare_ddns.app import ApplicationJob
|
from cloudflare_ddns.app import ApplicationJob
|
||||||
from cloudflare_ddns.constants import BASE_ENV_VAR, DEFAULT_DELAY, DOMAINS_ENV_VAR
|
from cloudflare_ddns.constants import BASE_ENV_VAR, DEFAULT_DELAY, DOMAINS_ENV_VAR
|
||||||
|
|
||||||
log = logging.getLogger("ddns")
|
log = logging.getLogger("ddns")
|
||||||
load_dotenv()
|
|
||||||
|
|
||||||
@click.command()
|
@click.command()
|
||||||
@click.option(
|
@click.option(
|
||||||
|
@ -1,9 +1,5 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
|
||||||
"forkProcessing": "enabled",
|
"includeForks": true
|
||||||
|
|
||||||
"ignorePaths": [
|
|
||||||
".github"
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -1,9 +1,9 @@
|
|||||||
flake8~=3.9.2
|
flake8~=3.8.4
|
||||||
flake8-annotations~=2.4.1
|
flake8-annotations~=2.4.1
|
||||||
flake8-bugbear~=24.4.26
|
flake8-bugbear~=20.1.4
|
||||||
flake8-docstrings~=1.7.0
|
flake8-docstrings~=1.7.0
|
||||||
flake8-import-order~=0.18.1
|
flake8-import-order~=0.18.1
|
||||||
flake8-string-format~=0.3.0
|
flake8-string-format~=0.3.0
|
||||||
flake8-tidy-imports~=4.1.0
|
flake8-tidy-imports~=4.1.0
|
||||||
flake8-todo~=0.7
|
flake8-todo~=0.7
|
||||||
pep8-naming~=0.14.1
|
pep8-naming~=0.11.1
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
certifi==2024.6.2
|
certifi==2024.6.2
|
||||||
chardet==5.2.0
|
chardet==4.0.0
|
||||||
charset-normalizer==3.3.2
|
charset-normalizer==3.3.2
|
||||||
click==8.1.7
|
click==8.1.0
|
||||||
colorama==0.4.6
|
colorama==0.4.6
|
||||||
idna==3.7
|
idna==2.10
|
||||||
requests==2.32.3
|
requests==2.32.3
|
||||||
urllib3==2.2.1
|
urllib3==1.26.18
|
||||||
|
Reference in New Issue
Block a user