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