Update to 1.15.0 upstream release

Upstream tag: 1.15.0
Upstream commit: d507597e

Commit authored by Packit automation (https://packit.dev/)
This commit is contained in:
Maja Massarini 2026-02-23 09:46:25 +01:00
commit 9fe4e04e95
13 changed files with 350 additions and 0 deletions

17
plans/git_reference.py Normal file
View file

@ -0,0 +1,17 @@
#!/usr/bin/python
# Copyright Contributors to the Packit project.
# SPDX-License-Identifier: MIT
import subprocess
from pathlib import Path
import fmf
tree_root = Path.cwd().absolute()
node = fmf.Tree(tree_root).find("/plans")
with node as data:
data["discover"]["url"] = "https://github.com/packit/packit.git"
data["discover"]["ref"] = (
subprocess.check_output(["git", "rev-parse", "HEAD"]).decode().strip()
)