Add root URL for bash fragments. Remove actions folder (move to a dedicate repo).

This commit is contained in:
Manuele Simi 2021-01-23 23:51:14 -05:00
parent f95e73adbd
commit fdd89f9f87
2 changed files with 3 additions and 5 deletions

3
Jenkinsfile vendored
View File

@ -48,6 +48,9 @@ pipeline {
string(name: 'repo_list',
defaultValue: 'default_list.txt',
description: 'The file with the list of repositories to update')
string(name: 'action_root',
defaultValue: 'https://code-repo.d4science.org/gCubeCI/gCubeActionsFiles',
description: 'The root URL of the Bash fragment to execute.')
string(name: 'action_file',
defaultValue: '',
description: 'The file with the Bash fragment to execute.')

View File

@ -1,5 +0,0 @@
#!/usr/bin/env bash
touch new_file4.txt
echo "Hello from gCube Actions 4" >> new_file4.txt
git add new_file4.txt
git commit -m "Add new_file4.txt from gCube Actions"