## Summary - Add pre-commit framework with hooks for YAML, Ansible, Python, shell, TOML, JSON, and secret detection - Fix all 91+ ansible-lint violations (variable naming, handler capitalization, changed_when) - Fix shellcheck warnings in mise-tasks scripts - Document pre-commit setup in README.md ## Deployment and Testing - [x] All pre-commit hooks pass (`uvx pre-commit run --all-files`) - [x] Test ansible playbook with `--check` mode - [x] Run `mise run indri-services-check` after deploy 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.tail8d86e.ts.net/eblume/blumeops/pulls/19
29 lines
1 KiB
YAML
29 lines
1 KiB
YAML
---
|
|
# Note: forgejo config at /opt/homebrew/var/forgejo/custom/conf/app.ini
|
|
# is not managed here (contains secrets). It is backed up by borgmatic.
|
|
|
|
- name: Install forgejo via homebrew
|
|
community.general.homebrew:
|
|
name: forgejo
|
|
state: present
|
|
|
|
- name: Check forgejo config exists
|
|
ansible.builtin.stat:
|
|
path: /opt/homebrew/var/forgejo/custom/conf/app.ini
|
|
register: forgejo_config
|
|
|
|
- name: Fail if forgejo config is missing
|
|
ansible.builtin.fail:
|
|
msg: |
|
|
Forgejo config not found at /opt/homebrew/var/forgejo/custom/conf/app.ini
|
|
This file contains secrets and is not managed by ansible.
|
|
To restore from backup, run:
|
|
borgmatic --config ~/.config/borgmatic/config.yaml extract --archive latest \
|
|
--path /opt/homebrew/var/forgejo/custom/conf/app.ini
|
|
when: not forgejo_config.stat.exists
|
|
|
|
- name: Ensure forgejo service is started
|
|
ansible.builtin.command: brew services start forgejo
|
|
register: forgejo_brew_start
|
|
changed_when: "'Successfully started' in forgejo_brew_start.stdout"
|
|
failed_when: false
|