github: reorg workflows and sync to codeberg and gitlab

This commit is contained in:
Aly Raffauf 2024-07-03 17:07:40 -04:00
parent 1147df487c
commit 90859f88f6
5 changed files with 56 additions and 48 deletions

View file

@ -1,17 +0,0 @@
name: "flake: evaluation check"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: cachix/install-nix-action@v20
- name: Check if flake.nix still evaluates
run: nix flake check

View file

@ -1,17 +0,0 @@
name: "flake: format check"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v20
- name: Check if flake complies with default style
run: nix fmt -- -c .

21
.github/workflows/flake-checks.yml vendored Normal file
View file

@ -0,0 +1,21 @@
name: "nix"
on: [push]
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: cachix/install-nix-action@v20
- name: check if flake complies with default style
run: nix fmt -- -c .
check-eval:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: cachix/install-nix-action@v20
- name: check if flake evaluates
run: nix flake check

View file

@ -1,31 +1,23 @@
name: "flake.lock: update"
name: "nix"
on:
schedule:
- cron: "0 6 * * *"
workflow_dispatch:
jobs:
build:
update-inputs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: cachix/install-nix-action@v20
- name: Update inputs in flake.lock
- name: update inputs in flake.lock
run: nix flake update
- name: Check if flake still evaluates
- name: check if flake evaluates
run: nix flake check
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "flake.lock: update"
commit_message: "flake: update inputs"
branch: master
commit_options: '--no-verify --signoff'
file_pattern: flake.lock

29
.github/workflows/git-sync-mirrors.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: "git"
on: [push]
jobs:
sync-codeberg:
runs-on: ubuntu-latest
steps:
- name: check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "sync codeberg mirror"
uses: yesolutions/mirror-action@v0.7.0
with:
REMOTE: 'https://codeberg.org/alyraffauf/nixcfg.git'
GIT_USERNAME: alyraffauf
GIT_PASSWORD: ${{ secrets.CODEBERG_PASSWORD }}
sync-gitlab:
runs-on: ubuntu-latest
steps:
- name: check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "sync gitlab mirror"
uses: yesolutions/mirror-action@v0.7.0
with:
REMOTE: 'https://gitlab.com/alyraffauf/nixcfg.git'
GIT_USERNAME: alyraffauf
GIT_PASSWORD: ${{ secrets.GITLAB_PASSWORD }}