Update .github stuff
This commit is contained in:
11
.github/SECURITY.md
vendored
Normal file
11
.github/SECURITY.md
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# Reporting a Vulnerability
|
||||||
|
|
||||||
|
tl;dr: [open a draft security advisory](https://github.com/TheLovinator1/anewdawn/security/advisories/new).
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
You can also email me at [tlovinator@gmail.com](mailto:tlovinator@gmail.com).
|
||||||
|
|
||||||
|
I am also available on Discord at `TheLovinator#9276`.
|
||||||
|
|
||||||
|
Thanks :-)
|
2
.github/renovate.json
vendored
2
.github/renovate.json
vendored
@ -8,4 +8,4 @@
|
|||||||
"dependencyDashboard": false,
|
"dependencyDashboard": false,
|
||||||
"osvVulnerabilityAlerts": true,
|
"osvVulnerabilityAlerts": true,
|
||||||
"timezone": "Europe/Stockholm"
|
"timezone": "Europe/Stockholm"
|
||||||
}
|
}
|
2
.github/workflows/docker-publish.yml
vendored
2
.github/workflows/docker-publish.yml
vendored
@ -7,7 +7,7 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * *"
|
- cron: "0 0 * * *"
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
docker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
16
.github/workflows/ruff.yml
vendored
Normal file
16
.github/workflows/ruff.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
name: Ruff
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *' # Run every day at midnight
|
||||||
|
jobs:
|
||||||
|
ruff:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: astral-sh/setup-uv@v5
|
||||||
|
- run: uv sync --all-extras --dev
|
||||||
|
- run: uv run pytest -vv
|
Reference in New Issue
Block a user