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 @@ -290,7 +290,7 @@ pipeline {
290
290
echo "Jenkinsfile is up to date."
291
291
fi
292
292
# Stage 2 - Delete old templates
293
- 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"
293
+ 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 "
294
294
for i in ${OLD_TEMPLATES}; do
295
295
if [[ -f "${i}" ]]; then
296
296
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
@@ -326,12 +326,13 @@ pipeline {
326
326
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows
327
327
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE
328
328
cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || :
329
+ cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || :
329
330
cd ${TEMPDIR}/repo/${LS_REPO}/
330
331
if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then
331
332
echo ".jenkins-external" >> .gitignore
332
333
git add .gitignore
333
334
fi
334
- git add ${TEMPLATED_FILES}
335
+ git add readme-vars.yml ${TEMPLATED_FILES}
335
336
git commit -m 'Bot Updating Templated Files'
336
337
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
337
338
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
You can’t perform that action at this time.
0 commit comments