diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..55c5ce9 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,8 @@ +# These are supported funding model platforms + +github: celery +patreon: +open_collective: celery +ko_fi: # Replace with a single Ko-fi username +tidelift: "pypi/celery" +custom: # Replace with a single custom sponsorship URL diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..47a31bc --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/opencollective.yml b/.github/opencollective.yml new file mode 100644 index 0000000..be703c8 --- /dev/null +++ b/.github/opencollective.yml @@ -0,0 +1,18 @@ +collective: celery +tiers: + - tiers: '*' + labels: ['Backer ❤️'] + message: 'Hey . Thank you for supporting the project!:heart:' + - tiers: ['Basic Sponsor', 'Sponsor', 'Silver Sponsor', 'Gold Sponsor'] + labels: ['Sponsor ❤️'] + message: | + Thank you for sponsoring the project!:heart::heart::heart: + Resolving this issue is one of our top priorities. + One of @celery/core-developers will triage it shortly. +invitation: | + Hey :wave:, + Thank you for opening an issue. We will get back to you as soon as we can. + Also, check out our [Open Collective]() and consider backing us - every little helps! + + We also offer priority support for our sponsors. + If you require immediate assistance please consider sponsoring us. diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..db036a5 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,19 @@ +# Learn more about this config here: https://pre-commit.com/ + +# To enable these pre-commit hooks run: +# `brew install pre-commit` or `python3 -m pip install pre-commit` +# Then in the project root directory run `pre-commit install` + +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: check-builtin-literals + - id: check-executables-have-shebangs + - id: check-shebang-scripts-are-executable + - id: check-toml + - id: check-yaml + - id: detect-private-key + - id: end-of-file-fixer + - id: mixed-line-ending + - id: trailing-whitespace