forked from Mirrors/cloudflare-ddns-docker
Compare commits
20 Commits
4dd0d15a4e
...
bcbd5caad8
Author | SHA1 | Date | |
---|---|---|---|
bcbd5caad8 | |||
85dd9332c0 | |||
b09b8837c9 | |||
d7a1736ddf | |||
a781f2cd80 | |||
3e4d6156c7 | |||
ef4b86c132 | |||
ce76fa87ed | |||
55d0ec44c0 | |||
f154083f07 | |||
199763f50e | |||
6905b2adab | |||
304ba2a48a | |||
5201dfa2d4 | |||
ae038ca034 | |||
4f7f3f243c | |||
4b169c2051 | |||
bb916ed3c1 | |||
35da9d30b2 | |||
753b3523c6 |
19
.gitea/workflows/demo.yaml
Normal file
19
.gitea/workflows/demo.yaml
Normal file
@ -0,0 +1,19 @@
|
||||
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
.sops.yaml
Normal file
1
.sops.yaml
Normal file
@ -0,0 +1 @@
|
||||
[]
|
@ -1,13 +1,14 @@
|
||||
import logging
|
||||
from os import environ
|
||||
from typing import Tuple
|
||||
from dotenv import load_dotenv
|
||||
|
||||
import click
|
||||
from cloudflare_ddns.app import ApplicationJob
|
||||
from cloudflare_ddns.constants import BASE_ENV_VAR, DEFAULT_DELAY, DOMAINS_ENV_VAR
|
||||
|
||||
log = logging.getLogger("ddns")
|
||||
|
||||
load_dotenv()
|
||||
|
||||
@click.command()
|
||||
@click.option(
|
||||
|
@ -1,5 +1,9 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
|
||||
"includeForks": true
|
||||
"forkProcessing": "enabled",
|
||||
|
||||
"ignorePaths": [
|
||||
".github"
|
||||
]
|
||||
}
|
@ -1,9 +1,9 @@
|
||||
flake8~=7.0.0
|
||||
flake8-annotations~=2.4.1
|
||||
flake8-bugbear~=20.1.4
|
||||
flake8-bugbear~=24.4.26
|
||||
flake8-docstrings~=1.5.0
|
||||
flake8-import-order~=0.18.1
|
||||
flake8-string-format~=0.3.0
|
||||
flake8-tidy-imports~=4.1.0
|
||||
flake8-todo~=0.7
|
||||
pep8-naming~=0.11.1
|
||||
pep8-naming~=0.14.1
|
||||
|
@ -1,8 +1,8 @@
|
||||
certifi==2024.6.2
|
||||
chardet==4.0.0
|
||||
chardet==5.2.0
|
||||
charset-normalizer==3.3.2
|
||||
click==8.1.0
|
||||
click==8.1.7
|
||||
colorama==0.4.6
|
||||
idna==2.10
|
||||
idna==3.7
|
||||
requests==2.32.3
|
||||
urllib3==1.26.18
|
||||
urllib3==2.2.1
|
||||
|
Reference in New Issue
Block a user