use gitmojis

This commit is contained in:
Ingolf Wagner 2024-07-21 12:43:38 +02:00
parent 56b672def4
commit 6b5b8cd9bf
Signed by: palo
GPG key ID: 76BF5F1928B9618B

View file

@ -5,7 +5,7 @@ on:
branches:
- '**'
schedule:
- cron: '50 12 * * *' # not to frequent, GitHub only allows a few pulls per hour
- cron: '30 2 * * *' # not to frequent, GitHub only allows a few pulls per hour
jobs:
nix build:
@ -63,74 +63,8 @@ jobs:
if: ${{ github.event_name == 'schedule' }}
run: |
git config --local user.email "action@git.ingolf-wagner.de"
git config --local user.name "Forgejo Action"
git config --local user.name "Forgejo Action :robot:"
git diff --quiet && \
git diff --staged --quiet || \
(git commit -am "Update Nix flakes" && git push)
#name: Build all NixOS Configurations
#on:
# - push
# #schedule:
# # - cron: "20 12 * * *" # not to frequent, GitHub only allows a few pulls per hour
#jobs:
# nix build:
# runs-on: native
# steps:
# - name: checkout repository
# uses: actions/checkout@v2
# with:
# depth: 0
# - name: update nix flakes
# #if: github.event_name == 'schedule'
# run: |
# cat <<EOF > .ssh_key
# ${{ secrets.SSH_KEY }}
# EOF
# chmod 600 .ssh_key
# eval $(ssh-agent)
# ssh-add .ssh_key
# nix flake update
#
# echo $SSH_AGENT_PID
# kill $SSH_AGENT_PID
# rm .ssh_key
# - name: fetch and check
# run: |
# cat <<EOF > .ssh_key
# ${{ secrets.SSH_KEY }}
# EOF
# chmod 600 .ssh_key
# eval $(ssh-agent)
# ssh-add .ssh_key
# nix flake archive
# nix flake check --verbose --log-format raw
#
# echo $SSH_AGENT_PID
# kill $SSH_AGENT_PID
# rm .ssh_key
# - name: nix build orbi
# run: nix build .#nixosConfigurations.orbi.config.system.build.toplevel
# - name: nix build cream
# run: nix build .#nixosConfigurations.cream.config.system.build.toplevel
# - name: nix build cherry
# run: nix build .#nixosConfigurations.cherry.config.system.build.toplevel
# - name: nix build chungus
# run: nix build .#nixosConfigurations.chungus.config.system.build.toplevel
(git commit -am ":arrow_up: nix flake update" && git push)