forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into no-updates-notice
- Loading branch information
Showing
52 changed files
with
671 additions
and
606 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Label PRs targeting LTS branches | ||
|
||
on: [pull_request_target] | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
label: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check if PR targets LTS branch | ||
if: startsWith(github.event.pull_request.base.ref, 'stable-') | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
github.rest.issues.addLabels({ | ||
owner: context.payload.repository.owner.login, | ||
repo: context.payload.repository.name, | ||
issue_number: context.payload.pull_request.number, | ||
labels: ['into-lts'] | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM gitpod/workspace-full | ||
|
||
ARG MAVEN_VERSION=3.9.3 | ||
ARG MAVEN_VERSION=3.9.4 | ||
|
||
RUN brew install gh && \ | ||
bash -c ". /home/gitpod/.sdkman/bin/sdkman-init.sh && sdk install maven ${MAVEN_VERSION} && sdk default maven ${MAVEN_VERSION}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
core/src/main/resources/hudson/model/AbstractItem/confirm-rename_fr.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Rename=Renommer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
core/src/main/resources/jenkins/install/SetupWizard/_wizard-ui.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// all variables declared here have to be in global scope | ||
window.defaultUpdateSiteId = (function () { | ||
var defaultSiteId = document | ||
.querySelector("#default-site-id") | ||
.getAttribute("data-default-update-site-id"); | ||
return defaultSiteId ? defaultSiteId.replace("'", "") : "default"; | ||
})(); | ||
|
||
window.setupWizardExtensions = []; | ||
window.onSetupWizardInitialized = function (extension) { | ||
setupWizardExtensions.push(extension); | ||
}; |
10 changes: 2 additions & 8 deletions
10
core/src/main/resources/jenkins/install/SetupWizard/wizard-ui.jelly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ | |
|
||
blurb=\ | ||
The web container doesn''t seem to be configured to do authentication. \ | ||
Check the container documentation and/or also consult <code>jenkins[email protected]</code> | ||
Check the container documentation and/or also consult <code>jenkinsci[email protected]</code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
|
||
# \ | ||
# The web container doesn't seem to be configured to do authentication. \ | ||
# Check the container documentation and/or also consult <code>jenkins[email protected]</code> | ||
# Check the container documentation and/or also consult <code>jenkinsci[email protected]</code> | ||
blurb=\ | ||
Уеб контейнерът не е настроен за идентификация. Прегледайте документацията му\ | ||
и архивите на форума <code>jenkins[email protected]</code> | ||
и архивите на форума <code>jenkinsci[email protected]</code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ | |
# THE SOFTWARE. | ||
|
||
blurb=Web containeren ser ikke ud til at være konfigureret til brugergodkendelse. \ | ||
Check containerens dokumentation og/eller rådfør dig med <code>jenkins[email protected]</code> | ||
Check containerens dokumentation og/eller rådfør dig med <code>jenkinsci[email protected]</code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,5 +21,5 @@ | |
# THE SOFTWARE. | ||
|
||
blurb=El contenedor de servlets parece no estar configurado para autenticación. \ | ||
Echa un vistazo a la documentación del contenedor y/o consulta <code>jenkins[email protected]</code> | ||
Echa un vistazo a la documentación del contenedor y/o consulta <code>jenkinsci[email protected]</code> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ | |
|
||
blurb=Sembra che il container Web non sia configurato per eseguire \ | ||
l''autenticazione. Controllare la documentazione del container e/o anche \ | ||
<code>jenkins[email protected]</code> | ||
<code>jenkinsci[email protected]</code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,5 +22,4 @@ | |
|
||
blurb=\ | ||
ウェブコンテナーが認証するように設定されていないようです。\ | ||
コンテナーのドキュメントを参考にするか、<code>[email protected]</code>か \ | ||
<code>[email protected]</code>に問い合わせてください。 | ||
コンテナーのドキュメントを参考にするか、<code>[email protected]</code>に問い合わせてください。 |
2 changes: 1 addition & 1 deletion
2
core/src/main/resources/jenkins/model/Jenkins/noPrincipal_lt.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
blurb=\ | ||
Web konteineris nesukonfigūruotas vykdyti autentikaciją. \ | ||
Patikrinkite konteinerio dokumentaciją ir/arba pasitarkite su <code>jenkins[email protected]</code> | ||
Patikrinkite konteinerio dokumentaciją ir/arba pasitarkite su <code>jenkinsci[email protected]</code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,6 @@ | |
|
||
# \ | ||
# The web container doesn't seem to be configured to do authentication. \ | ||
# Check the container documentation and/or also consult <code>jenkins[email protected]</code> | ||
blurb=O container de servlets parece não estar configurado para fazer autenticação. <code>jenkins[email protected]</code> | ||
# Check the container documentation and/or also consult <code>jenkinsci[email protected]</code> | ||
blurb=O container de servlets parece não estar configurado para fazer autenticação. <code>jenkinsci[email protected]</code> | ||
|
2 changes: 1 addition & 1 deletion
2
core/src/main/resources/jenkins/model/Jenkins/noPrincipal_sr.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# This file is under the MIT License by authors | ||
|
||
blurb=Веб-контејнер није оспособљен за аутентикацију. Проверите документацију и <code>jenkins[email protected]</code>. | ||
blurb=Веб-контејнер није оспособљен за аутентикацију. Проверите документацију и <code>jenkinsci[email protected]</code>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ | |
|
||
blurb=\ | ||
Web Container 似乎沒有設成要驗證。\ | ||
請核對 Container 的說明文件,或到 <code>jenkins[email protected]</code> 看看。 | ||
請核對 Container 的說明文件,或到 <code>jenkinsci[email protected]</code> 看看。 |
Oops, something went wrong.