Skip to content

Commit 98d4108

Browse files
committed
Merge remote-tracking branch 'origin/main' into add-pdf-open
2 parents e2e3446 + 0ad9461 commit 98d4108

File tree

480 files changed

+8730
-3758
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

480 files changed

+8730
-3758
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ body:
4343

4444
- type: checkboxes
4545
attributes:
46-
label: Checked with the latest development build (copy version output from About dialog)
46+
label: Checked with the [latest development build](https://builds.jabref.org/main/) (copy version output from About dialog)
4747
description: |
4848
Please always test if the bug is still reproducible in the latest development version. We are constantly improving JabRef and some bugs may already be fixed. If you already use a development version, ensure that you use the latest one.
4949
You can download the latest development build at: https://builds.jabref.org/main/ . **Please make a backup of your library before you try out this version.**

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Closes _____
22
<!-- LINK THE ISSUE WITH THE "Closes" KEYWORD. Example: Closes https://github.com/JabRef/jabref/issues/13109 OR Closes #13109 -->
33

4-
<!-- In about one to three sentences, describe the changes you have made: what, where, why, ... (REPLACE THIS LINE) -->
4+
<!-- In about one to three sentences, describe the changes you have made: what, where, why, ... Summarize changes and DO NOT list modified classes one-by-one. (REPLACE THIS LINE) -->
55

66
<!-- NOTE: If your work is not yet complete, please open a draft pull request. In that case, outline your intended next steps. Do you need feedback? Will you continue in parallel? ... -->
77

.github/dependabot.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ updates:
99
schedule:
1010
interval: weekly
1111
day: sunday
12-
labels:
13-
- "dependencies"
12+
labels: [ ]
1413
ignore:
1514
- dependency-name: com.microsoft.azure:applicationinsights-core
1615
versions:
@@ -23,10 +22,17 @@ updates:
2322
schedule:
2423
interval: weekly
2524
day: sunday
26-
labels:
27-
- "dependencies"
25+
labels: [ ]
2826
- package-ecosystem: "gitsubmodule"
2927
directory: "/"
3028
schedule:
3129
interval: weekly
3230
day: sunday
31+
labels: [ ]
32+
- package-ecosystem: "maven"
33+
directories:
34+
- "jablib-examples/maven3/doi-to-bibtex"
35+
schedule:
36+
interval: weekly
37+
day: sunday
38+
labels: [ ]

.github/ghprcomment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,19 +179,19 @@
179179
Give it a read, and you’ll discover the ancient wisdom of assigning issues to yourself. Trust me, it’s worth it. 🚀
180180
181181
- jobName: 'PR title must not contain "issue <number>"'
182-
workflowName: 'PR Format'
182+
workflowName: 'Check PR Format'
183183
always: true
184184
message: >
185185
The title of the pull request must not start with "Fix for issue xyz".
186186
Please use a concise one-line summary that explains what the fix or change actually does.
187187
Example of a good title: "Prevent crash when importing malformed BibTeX entries".
188188
- jobName: 'Mandatory Checks present'
189-
workflowName: 'PR Format'
189+
workflowName: 'Check PR Format'
190190
always: true
191191
message: >
192192
You have removed the "Mandatory Checks" section from your pull request description. Please adhere to our [pull request template](https://github.com/JabRef/jabref/blob/main/.github/PULL_REQUEST_TEMPLATE.md?plain=1#L10).
193193
- jobName: 'PR checklist OK'
194-
workflowName: 'PR Format'
194+
workflowName: 'Check PR Format'
195195
always: true
196196
message: >
197197
Note that your PR will not be reviewed/accepted until you have gone through the mandatory checks in the description and marked each of them them exactly in the format of `[x]` (done), `[ ]` (not done yet) or `[/]` (not applicable).

.github/workflows/binaries.yml

Lines changed: 95 additions & 34 deletions
Large diffs are not rendered by default.

.github/workflows/check-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.repository == 'JabRef/jabref'
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
show-progress: 'false'
2626
- name: Run linkspector

.github/workflows/cleanup-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
ignore_sha: true
2424
workflow_id: 160969125
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: "Check for 'dev: binaries' label"
2727
id: check_label
2828
run: |

.github/workflows/dockerimages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Set up Docker Buildx
5454
uses: docker/setup-buildx-action@v3
5555
- name: Fetch all history for all tags and branches
56-
uses: actions/checkout@v5
56+
uses: actions/checkout@v6
5757
with:
5858
fetch-depth: 0
5959
submodules: 'true'

.github/workflows/gource.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
with:
5656
fetch-depth: 0
5757
show-progress: 'false'

.github/workflows/latex.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Check out code
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
- name: Install TeX Live
3232
uses: zauguin/install-texlive@v4
3333
with:
@@ -80,7 +80,7 @@ jobs:
8080
bibengine: biber
8181
steps:
8282
- name: Check out code
83-
uses: actions/checkout@v5
83+
uses: actions/checkout@v6
8484

8585
- name: Install TeX Live
8686
uses: zauguin/install-texlive@v4

0 commit comments

Comments
 (0)