-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into annotationProcessor
* upstream/master: (47 commits) Fix copy pasting and delete via menu or key (#6740) Add instructions how to work with fetchers (#6731) Autoinstall extension in chrome (#6442) Delete link after download (#6723) New translations JabRef_en.properties (Portuguese, Brazilian) (#6728) Bump pascalgn/automerge-action from v0.8.5 to v0.9.0 (#6736) Bump byte-buddy-parent from 1.10.13 to 1.10.14 (#6733) Bump mockito-core from 3.4.4 to 3.4.6 (#6734) Bump unirest-java from 3.8.06 to 3.9.00 (#6735) Bump org.beryx.jlink from 2.21.1 to 2.21.2 (#6732) Add testing interface, including a set of capabilities to tests for (#6687) Fix pasting on mac and linux (#6419) Add validation of "AUTHORS" file (#6722) Squashed 'src/main/resources/csl-styles/' changes from cacc4ee..827b986 New Crowdin updates (#6721) Add missing AUTHORs Fix for issue 6639 (#6719) Fix more links Fix link New Crowdin updates (#6718) ...
- Loading branch information
Showing
142 changed files
with
6,601 additions
and
1,661 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
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,20 @@ | ||
name: Check external href links in the documentation | ||
|
||
on: | ||
schedule: | ||
# Run on the first of each month at 9:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07) | ||
- cron: "0 9 1 * *" | ||
|
||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Prepare markdown-link-check | ||
run: mkdir docs/ROOT && cp CHANGELOG.md README.md docs/ROOT | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'no' | ||
config-file: 'mlc_config.json' | ||
folder-path: 'docs/' |
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 |
---|---|---|
|
@@ -41,17 +41,17 @@ jobs: | |
name: Create installer and portable version for ${{ matrix.displayName }} | ||
|
||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v2 | ||
- name: Fetch all history for all tags and branches | ||
run: git fetch --prune --unshallow | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected].3 | ||
uses: gittools/actions/gitversion/[email protected].4 | ||
with: | ||
versionSpec: '5.2.x' | ||
- name: Run GitVersion | ||
id: gitversion | ||
uses: gittools/actions/gitversion/[email protected].3 | ||
uses: gittools/actions/gitversion/[email protected].4 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
|
@@ -103,12 +103,12 @@ jobs: | |
- name: Fetch all history for all tags and branches | ||
run: git fetch --prune --unshallow | ||
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected].3 | ||
uses: gittools/actions/gitversion/[email protected].4 | ||
with: | ||
versionSpec: '5.2.x' | ||
- name: Run GitVersion | ||
id: gitversion | ||
uses: gittools/actions/gitversion/[email protected].3 | ||
uses: gittools/actions/gitversion/[email protected].4 | ||
- name: Get linux binaries | ||
uses: actions/download-artifact@master | ||
with: | ||
|
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 |
---|---|---|
|
@@ -44,15 +44,6 @@ jobs: | |
with: | ||
args: CHANGELOG.md CONTRIBUTING.md README.md docs/ | ||
config: '.markdownlint.yml' | ||
- name: Prepare markdown-link-check | ||
run: mkdir docs/ROOT && cp CHANGELOG.md README.md docs/ROOT | ||
- name: Run markdown-link-check | ||
uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
with: | ||
use-quiet-mode: 'yes' | ||
use-verbose-mode: 'no' | ||
config-file: 'mlc_config.json' | ||
folder-path: 'docs/' | ||
tests: | ||
name: Unit tests | ||
runs-on: ubuntu-latest | ||
|
@@ -232,3 +223,35 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gradle/wrapper-validation-action@v1 | ||
checkauthors: | ||
name: "Validate AUTHORS" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
# full checkout needed for authors generation | ||
fetch-depth: 0 | ||
- name: "Check AUTHORS" | ||
id: authors_check | ||
shell: bash | ||
run: | | ||
./scripts/generate-authors.sh | ||
set +o pipefail | ||
added=$(git diff HEAD --no-ext-diff --unified=0 -a --no-prefix | egrep "^\+[^+]" | sed "s/^\+//") | ||
if [ -z "$added" ]; then | ||
echo "::set-output name=newauthor::false" | ||
echo "No authors added" | ||
exit 0 | ||
fi | ||
message="When merged, this pull request proposes to manually add the following to the [AUTHORS file](https://github.com/JabRef/jabref/blob/master/CONTRIBUTING.md#author-credits). In case you want to raise a different proposal, please comment here (we will adapt our `.mailmap` file then) or [adjust your name in your git configuration](https://docs.github.com/en/github/using-git/setting-your-username-in-git). You will have to [rewrite your git history](https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History) and use `git commit --author="John Doe <[email protected]>"` for each changed commit.%0A%0A\`\`\`%0A${added//$'\n'/'%0A'}%0A\`\`\`%0A" | ||
echo "::set-output name=message::$message" | ||
echo "::set-output name=newauthor::true" | ||
echo "New authors found" | ||
- name: Comment PR | ||
uses: unsplash/comment-on-pr@master | ||
if: steps.authors_check.outputs.newauthor == 'true' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
msg: "${{ steps.authors_check.outputs.message }}" | ||
check_for_duplicate_msg: true |
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 |
---|---|---|
|
@@ -202,3 +202,11 @@ Mootez Saad <[email protected]> <mootez.saad@medtech. | |
Chen Yuheng <[email protected]> | ||
Dominik Voigt <[email protected]> | ||
Carl Christian Snethlage <[email protected]> <[email protected]> | ||
Daniel Price <[email protected]> | ||
Cai Zhichun <[email protected]> <[email protected]> | ||
Hollyqqqqq <[email protected]> <[email protected]> | ||
Grzegorz Popiel <[email protected]> | ||
Tianjian Lei <[email protected]> | ||
Tianjian Lei <[email protected]> <[email protected]> | ||
Muhammad Arsalan Badar <[email protected]> | ||
ZhouSky <[email protected]> |
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
Oops, something went wrong.