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:
parent
e8f0c26414
commit
9fe4e04e95
13 changed files with 350 additions and 0 deletions
17
plans/git_reference.py
Normal file
17
plans/git_reference.py
Normal 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()
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue