File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ pipeline {
281
281
echo "Jenkinsfile is up to date."
282
282
fi
283
283
# Stage 2 - Delete old templates
284
- OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml"
284
+ OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf "
285
285
for i in ${OLD_TEMPLATES}; do
286
286
if [[ -f "${i}" ]]; then
287
287
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
@@ -317,12 +317,13 @@ pipeline {
317
317
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows
318
318
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE
319
319
cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || :
320
+ cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || :
320
321
cd ${TEMPDIR}/repo/${LS_REPO}/
321
322
if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then
322
323
echo ".jenkins-external" >> .gitignore
323
324
git add .gitignore
324
325
fi
325
- git add ${TEMPLATED_FILES}
326
+ git add readme-vars.yml ${TEMPLATED_FILES}
326
327
git commit -m 'Bot Updating Templated Files'
327
328
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
328
329
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
You can’t perform that action at this time.
0 commit comments