# Configuration for AUR package updates signing_key: "YOUR_GPG_KEY_ID" packages: example-package: # GitHub repository to check for updates github_repo: "owner/repo" # Version detection method: 'release' or 'tag' version_method: "release" # Optional: Custom version pattern regex version_pattern: "v(\\d+\\.\\d+\\.\\d+)" # Path to PKGBUILD relative to repository root pkgbuild_path: "example-package/PKGBUILD" # Optional: Custom version extraction command version_command: "curl -s https://api.example.com/version" # Optional: Skip specific version patterns skip_patterns: - ".*-beta.*" - ".*-rc.*" # Optional: Custom update script pre_update_script: "./pre-update.sh" post_update_script: "./post-update.sh"