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 @@ -278,7 +278,7 @@ pipeline {
278
278
echo "Jenkinsfile is up to date."
279
279
fi
280
280
# Stage 2 - Delete old templates
281
- 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"
281
+ 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 "
282
282
for i in ${OLD_TEMPLATES}; do
283
283
if [[ -f "${i}" ]]; then
284
284
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
@@ -314,12 +314,13 @@ pipeline {
314
314
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows
315
315
mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE
316
316
cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || :
317
+ cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || :
317
318
cd ${TEMPDIR}/repo/${LS_REPO}/
318
319
if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then
319
320
echo ".jenkins-external" >> .gitignore
320
321
git add .gitignore
321
322
fi
322
- git add ${TEMPLATED_FILES}
323
+ git add readme-vars.yml ${TEMPLATED_FILES}
323
324
git commit -m 'Bot Updating Templated Files'
324
325
git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all
325
326
echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER}
You can’t perform that action at this time.
0 commit comments