Skip to content

Commit 6816e3e

Browse files
committed
Merge remote-tracking branch 'upstream/main' into fix-issue-11937
* upstream/main: (102 commits) Adapt welcome message (JabRef#14487) Add message when closing a PR Add collection of "all" AI features (JabRef#14438) Trigger conflict-detection on push on main (JabRef#14479) Add unassigned_comment on comment issue New Crowdin updates (JabRef#14483) Tweak labels also at merge conflicts Merge --remove-label and --add-label Remove SmartGroup and refactor groups factory (JabRef#14398) more debug Support html when parsing arXiv identifiers (JabRef#14474) Add debug and fix run Remove "ready-for-review" if changes are required Have label move as last step of comment Add pr number to output change files to file(s) (JabRef#14465) Add CDS archive (JabRef#14476) Fix adapting labels (JabRef#14477) Chore(deps): Bump jablib/src/main/resources/csl-styles (JabRef#14468) Chore(deps): Bump net.bytebuddy:byte-buddy in /versions (JabRef#14472) ...
2 parents 77f8c8a + 2a82cf0 commit 6816e3e

File tree

406 files changed

+5591
-1803
lines changed

Some content is hidden

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

406 files changed

+5591
-1803
lines changed

.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/ghprcomment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
149149
In future, **please avoid that**. For now, you can continue working.
150150
- jobName: 'Conflicts with target branch'
151-
workflowName: 'On PR opened/updated'
151+
workflowName: 'On PR opened/updated (check)'
152152
message: >
153153
Your pull request conflicts with the target branch.
154154

.github/workflows/binaries.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ jobs:
236236
name: ${{ matrix.displayName }} installer and portable version
237237
steps:
238238
- name: Fetch all history for all tags and branches
239-
uses: actions/checkout@v5
239+
uses: actions/checkout@v6
240240
with:
241241
fetch-depth: 0
242242
submodules: 'true'
@@ -266,9 +266,9 @@ jobs:
266266
id: cache-key
267267
shell: bash
268268
run: |
269-
echo "cache_key=jbang-$(date +%F)" >> $GITHUB_OUTPUT
269+
echo "cache_key=jbang-$(date +%Y-%m)" >> $GITHUB_OUTPUT
270270
- name: Use cache
271-
uses: actions/cache@v4
271+
uses: actions/cache/restore@v4
272272
with:
273273
path: ~/.jbang
274274
key: ${{ steps.cache-key.outputs.cache_key }}

.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: 2 additions & 2 deletions
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: |
@@ -36,7 +36,7 @@ jobs:
3636
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
- name: Delete folder on builds.jabref.org
3838
if: steps.check_label.outputs.has_label_binaries == 'yes'
39-
uses: appleboy/ssh-action@v1.2.3
39+
uses: appleboy/ssh-action@v1.2.4
4040
with:
4141
script: rm -rf /var/www/builds.jabref.org/www/pull/${{ github.event.pull_request.number }} || true
4242
host: build-upload.jabref.org

.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

.github/workflows/link-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
permissions:
9999
issues: write
100100
steps:
101-
- uses: actions/checkout@v5
101+
- uses: actions/checkout@v6
102102
with:
103103
show-progress: 'false'
104104
- name: Assign PR creator to issue

.github/workflows/on-issue-comment.yml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,15 @@ jobs:
1414
steps:
1515
- name: Assign the user or unassign stale assignments
1616
id: assign
17-
uses: takanome-dev/assign-issue-action@edge
17+
# uses: takanome-dev/assign-issue-action@edge
18+
uses: takanome-dev/assign-issue-action@feat/github-teams-support
1819
with:
19-
github_token: '${{ secrets.GITHUB_TOKEN }}'
20+
github_token: '${{ secrets.GH_TOKEN_ASSIGN_ISSUE_ACTION || github.token }}'
2021
# If this is updated, also update the number at unassign-issues.yml
2122
days_until_unassign: 21
22-
maintainers: 'koppor,Siedlerchr,ThiloteE,calixtus,HoussemNasri,subhramit,InAnYan,LinusDietz'
23+
# One person should work on one issue only
24+
max_assignments: 1
25+
maintainers: '@JabRef/developers,Siedlerchr,ThiloteE,calixtus,HoussemNasri,subhramit,InAnYan'
2326
assigned_comment: >
2427
👋 Hey @{{ handle }}, thank you for your interest in this issue! 🎉
2528
@@ -46,6 +49,19 @@ jobs:
4649
It also looks like you don't know how to assign issues to yourself.
4750
Please read our [CONTRIBUTING.md](https://github.com/JabRef/jabref/blob/main/CONTRIBUTING.md) to find out how.
4851
It will also guide you in other aspects of contributing to JabRef.
52+
unassigned_comment: |
53+
### 📋 Assignment Update
54+
55+
Hi @{{ handle }}, due to inactivity, you have been unassigned from this issue.
56+
57+
<details>
58+
<summary>Next steps</summary>
59+
60+
\
61+
**If you still want to work on this:**
62+
- Submit a pull request showing your current state. You will be automatically assigned again.
63+
- Ask a maintainer to assign you again.
64+
</details>
4965
- name: Move issue corresponding column in "Candidates for University Projects"
5066
uses: m7kvqbe1/github-action-move-issues@main
5167
if: ${{ steps.assign.outputs.assigned == 'yes' || steps.assign.outputs.unassigned == 'yes' }}

0 commit comments

Comments
 (0)