From 06257e81cfdc8f6db6a5caf0f061ddf75c552190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Val=C3=AD=C4=8Dek?= Date: Sun, 7 Aug 2022 21:49:16 +0200 Subject: [PATCH] Removed obsolette scripts: replaced by process_repository_dirs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Václav Valíček --- old/checker/notify-commit | 14 -------------- old/checker/notify-tag | 14 -------------- 2 files changed, 28 deletions(-) delete mode 100755 old/checker/notify-commit delete mode 100755 old/checker/notify-tag diff --git a/old/checker/notify-commit b/old/checker/notify-commit deleted file mode 100755 index 5cf487b..0000000 --- a/old/checker/notify-commit +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -# notify on commit push -# -# Parameters (via env) -# -# COMMIT - hash of commit -# COMMIT_AUTHOR - author of commit -# COMMIT_ABBREV - abbreviated sha -# COMMIT_LOG - short line of commit log -# COMMIT_BRANCH - name of branch -# PROJECT_NAME - project name specified in cloner.cfg -echo "Commit: ($COMMIT: (AUTHOR=$COMMIT_AUTHOR; BRANCH=$COMMIT_BRANCH), Project: $PROJECT_NAME)" -echo -e "\t$COMMIT_ABBREV: $COMMIT_LOG" - diff --git a/old/checker/notify-tag b/old/checker/notify-tag deleted file mode 100755 index bbea1af..0000000 --- a/old/checker/notify-tag +++ /dev/null @@ -1,14 +0,0 @@ -#/bin/bash -# notify on tag push (new tag or change) -# -# Parameters (via env) -# -# TAG_HASH - hash of tagged commit -# TAG_NAME - tag label -# TAG_AUTHOR - who authored the tag - if available -# TAG_ABBREV - commit abbreviated hash -# TAG_LOG - short status line of log -# PROJECT_NAME - name of project specified in cloner.cfg -echo "TAG: (Name=$TAG_NAME; AUTHOR=$TAG_AUTHOR; SHA: $TAG_HASH), PROJECT: $PROJECT_NAME" -echo -e "\t$TAG_ABBREV: $TAG_LOG" -