Post-merge / detect-type (push) Successful in 48s
Post-merge / release (push) Successful in 1m0s
Post-merge / validate-commit-msg (push) Successful in 1m3s
Post-merge / vikunja (push) Successful in 1m3s
Post-merge / badges (push) Successful in 1m11s
Post-merge / sync-wiki (push) Successful in 1m35s
Post-merge / configure-repo (push) Successful in 58s
Post-merge / publish (push) Successful in 57s
14 lines
241 B
Python
14 lines
241 B
Python
"""Custom exceptions for Gitea Runner Manager."""
|
|
|
|
|
|
class GRMError(Exception):
|
|
"""Base exception for all Gitea Runner Manager errors."""
|
|
|
|
pass
|
|
|
|
|
|
class AnsibleError(GRMError):
|
|
"""Raised when an Ansible command fails."""
|
|
|
|
pass
|