Compare commits
2 commits
cff47bc3e6
...
f97d0c1b6f
Author | SHA1 | Date | |
---|---|---|---|
f97d0c1b6f | |||
d40aaaf45b |
3 changed files with 32 additions and 8 deletions
|
@ -0,0 +1,21 @@
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 4 1 * *"
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: install nix action
|
||||||
|
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GH_TOKEN }}
|
||||||
|
- name: update flake.lock
|
||||||
|
uses: DeterminateSystems/update-flake-lock@v20
|
||||||
|
with:
|
||||||
|
pr-title: "flake.lock: Update"
|
||||||
|
pr-labels: |
|
||||||
|
nix
|
||||||
|
dependencies
|
||||||
|
automated
|
|
@ -0,0 +1,11 @@
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: install nix action
|
||||||
|
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GH_TOKEN }}
|
||||||
|
- run: nix run nixpkgs#alejandra -- -c .
|
|
@ -58,13 +58,6 @@
|
||||||
tls.domains = [{main = "*.flake.sh";}];
|
tls.domains = [{main = "*.flake.sh";}];
|
||||||
tls.certresolver = "production";
|
tls.certresolver = "production";
|
||||||
};
|
};
|
||||||
woodpecker-server = {
|
|
||||||
rule = "Host(`ci.flake.sh`)";
|
|
||||||
entrypoints = ["websecure"];
|
|
||||||
service = "woodpecker-server";
|
|
||||||
tls.domains = [{main = "*.flake.sh";}];
|
|
||||||
tls.certresolver = "production";
|
|
||||||
};
|
|
||||||
hedgedoc = {
|
hedgedoc = {
|
||||||
rule = "Host(`scratch.flake.sh`)";
|
rule = "Host(`scratch.flake.sh`)";
|
||||||
entrypoints = ["websecure"];
|
entrypoints = ["websecure"];
|
||||||
|
@ -86,7 +79,6 @@
|
||||||
forgejo.loadBalancer.servers = [{url = "http://localhost:3200";}];
|
forgejo.loadBalancer.servers = [{url = "http://localhost:3200";}];
|
||||||
rustypaste.loadBalancer.servers = [{url = "http://localhost:8000";}];
|
rustypaste.loadBalancer.servers = [{url = "http://localhost:8000";}];
|
||||||
grafana.loadBalancer.servers = [{url = "http://localhost:3100";}];
|
grafana.loadBalancer.servers = [{url = "http://localhost:3100";}];
|
||||||
woodpecker-server.loadBalancer.servers = [{url = "http://localhost:8200";}];
|
|
||||||
hedgedoc.loadBalancer.servers = [{url = "http://localhost:3300";}];
|
hedgedoc.loadBalancer.servers = [{url = "http://localhost:3300";}];
|
||||||
vaultwarden.loadBalancer.servers = [{url = "http://localhost:8222";}];
|
vaultwarden.loadBalancer.servers = [{url = "http://localhost:8222";}];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue