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,36 +1,28 @@
name: "flake.lock: update" name: "nix"
on: on:
schedule: schedule:
- cron: "0 6 * * *" - cron: "0 6 * * *"
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build: update-inputs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
fetch-depth: 1 fetch-depth: 1
- uses: cachix/install-nix-action@v20 - uses: cachix/install-nix-action@v20
- name: update inputs in flake.lock
- name: Update inputs in flake.lock
run: nix flake update run: nix flake update
- name: check if flake evaluates
- name: Check if flake still evaluates
run: nix flake check run: nix flake check
- uses: stefanzweifel/git-auto-commit-action@v5 - uses: stefanzweifel/git-auto-commit-action@v5
with: with:
commit_message: "flake.lock: update" commit_message: "flake: update inputs"
branch: master branch: master
commit_options: '--no-verify --signoff' commit_options: '--no-verify --signoff'
file_pattern: flake.lock file_pattern: flake.lock
commit_user_name: Flake Bot # defaults to "GitHub Actions" commit_user_name: Flake Bot # defaults to "GitHub Actions"
#commit_user_email: my-github-actions-bot@example.org # defaults to "actions@github.com" #commit_user_email: my-github-actions-bot@example.org # defaults to "actions@github.com"
commit_author: Flake Bot <actions@github.com> # defaults to author of the commit that triggered the run commit_author: Flake Bot <actions@github.com> # defaults to author of the commit that triggered the run
skip_dirty_check: false skip_dirty_check: false
skip_fetch: true skip_fetch: true

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 }}