Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3a9c7db

Browse files
committedApr 3, 2021
Merge remote-tracking branch 'upstream/main' into writebackupToTemp
* upstream/main: (25 commits) Fix NumberFormatException in BracketedPattern (#7600) Update MAINTAINERS (#7601) Fix CSL update (#7592) Add unit tests for org.jabref.gui classes (#7579) Squashed 'buildres/csl/csl-styles/' changes from 30fb68e..e1acabe Bump tika-core from 1.25 to 1.26 (#7589) Revert "Skip Mac OS build if secret not present (#7591)" (#7594) Optimize saving (#7568) Skip Mac OS build if secret not present (#7591) Rename master to main in dev help Update tests-fetchers.yml Update refresh-journal-lists.yml Update deployment.yml Rename master to main in coding readme Rename master to main in citation style update Rename master to main in gitversion config Fix column sort order gets overwritten (#7573) Add some hints on test tooling (#7585) Add "Update Gradle Wrapper Action" (#7584) Bump classgraph from 4.8.102 to 4.8.104 (#7587) ...
2 parents bafe41a + bb011c9 commit 3a9c7db

File tree

98 files changed

+5545
-1467
lines changed

Some content is hidden

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

98 files changed

+5545
-1467
lines changed
 

‎.github/workflows/automerge.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ on: [pull_request]
33

44
jobs:
55
automerge:
6-
name: Automerge Dependabot
6+
name: Automerge Dependency Updates
77
runs-on: ubuntu-latest
8-
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
8+
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' || contains(github.event.pull_request.labels.*.name, 'dependencies')
99
steps:
1010
- name: 'Wait for status checks'
1111
id: waitforstatuschecks
@@ -24,6 +24,6 @@ jobs:
2424
uses: pascalgn/automerge-action@v0.13.1
2525
if: steps.waitforstatuschecks.outputs.status == 'success'
2626
env:
27-
MERGE_METHOD: "squash"
27+
MERGE_METHOD: "merge"
2828
MERGE_LABELS: ""
2929
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

‎.github/workflows/deployment.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- master
8-
- master-release
7+
- main
8+
- main-release
99
paths-ignore:
1010
- 'docs/**'
1111
- 'src/test/**'
@@ -107,7 +107,7 @@ jobs:
107107
mv "build/distribution/JabRef-${{ steps.gitversion.outputs.Major }}.${{ steps.gitversion.outputs.Minor }}-signed.pkg" "build/distribution/JabRef-${{ steps.gitversion.outputs.Major }}.${{ steps.gitversion.outputs.Minor }}.pkg"
108108
# DISABLED UNTIL WE HAVE A NEW APPLE DEVELOPER ACCOUNT
109109
# - name: Notarize dmg and pkg installer
110-
# if: matrix.os == 'macos-latest' && github.ref == 'refs/heads/master'
110+
# if: matrix.os == 'macos-latest' && github.ref == 'refs/heads/main'
111111
# shell: bash
112112
# run: |
113113
# REQUEST_UUID_DMG=$(xcrun altool --verbose --notarize-app --primary-bundle-id "org.jabref" --username ${{ secrets.OSX_NOTARIZATION_APP_USERNAME }} --password ${{ secrets.OSX_NOTARIZATION_APP_PWD }} --asc-provider "W2PU6LW5U5" --file "build/distribution/JabRef-${{ steps.gitversion.outputs.Major }}.${{ steps.gitversion.outputs.Minor }}.dmg" | grep RequestUUID | awk '{print $3}')

0 commit comments

Comments
 (0)
Please sign in to comment.