-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10891 from IQSS/develop
6.4 Merge to Master Pull Request
- Loading branch information
Showing
280 changed files
with
36,809 additions
and
3,891 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ Thank you for contributing to the Dataverse Project through the creation of a bu | |
WARNING: If this is a security issue it should be reported privately to [email protected] | ||
More information on bug issues and contributions can be found in the "Contributing to Dataverse" page: | ||
https://github.com/IQSS/dataverse/blob/develop/CONTRIBUTING.md#bug-reportsissues | ||
https://guides.dataverse.org/en/latest/contributor/index.html | ||
Please fill out as much of the template as you can. | ||
Start below this comment section. | ||
|
@@ -44,7 +44,6 @@ Start below this comment section. | |
**Any related open or closed issues to this bug report?** | ||
|
||
|
||
|
||
**Screenshots:** | ||
|
||
No matter the issue, screenshots are always welcome. | ||
|
@@ -53,3 +52,7 @@ To add a screenshot, please use one of the following formats and/or methods desc | |
|
||
* https://help.github.com/en/articles/file-attachments-on-issues-and-pull-requests | ||
* | ||
|
||
|
||
**Are you thinking about creating a pull request for this issue?** | ||
Help is always welcome, is this bug something you or your organization plan to fix? |
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,40 @@ | ||
--- | ||
name: Idea proposal | ||
about: Propose a new idea for discussion to improve the Dataverse software! | ||
title: 'Suggestion:' | ||
labels: 'Type: Suggestion' | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- | ||
Thank you for contributing to the Dataverse Project through the creation of a feature request! | ||
More information on ideas/feature requests and contributions can be found in the "Contributing to Dataverse" page: | ||
https://guides.dataverse.org/en/latest/contributor/index.html | ||
Please fill out as much of the template as you can. | ||
Start below this comment section. | ||
--> | ||
|
||
**Overview of the Suggestion** | ||
|
||
|
||
**What kind of user is the suggestion intended for?** | ||
(Example users roles: API User, Curator, Depositor, Guest, Superuser, Sysadmin) | ||
|
||
|
||
**What inspired this idea?** | ||
|
||
|
||
**What existing behavior do you want changed?** | ||
|
||
|
||
**Any brand new behavior do you want to add to Dataverse?** | ||
|
||
|
||
**Any open or closed issues related to this suggestion?** | ||
|
||
|
||
**Are you thinking about creating a pull request for this issue?** | ||
Help is always welcome, is this idea something you or your organization plan to implement? |
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,37 @@ | ||
--- | ||
name: "Setup Maven and Caches" | ||
description: "Determine Java version and setup Maven, including necessary caches." | ||
inputs: | ||
git-reference: | ||
description: 'The git reference (branch/tag) to check out' | ||
required: false | ||
default: '${{ github.ref }}' | ||
pom-paths: | ||
description: "List of paths to Maven POM(s) for cache dependency setup" | ||
required: false | ||
default: 'pom.xml' | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.git-reference }} | ||
- name: Determine Java version by reading the Maven property | ||
shell: bash | ||
run: | | ||
echo "JAVA_VERSION=$(grep '<target.java.version>' ${GITHUB_WORKSPACE}/modules/dataverse-parent/pom.xml | cut -f2 -d'>' | cut -f1 -d'<')" | tee -a ${GITHUB_ENV} | ||
- name: Set up JDK ${{ env.JAVA_VERSION }} | ||
id: setup-java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ env.JAVA_VERSION }} | ||
distribution: 'temurin' | ||
cache: 'maven' | ||
cache-dependency-path: ${{ inputs.pom-paths }} | ||
- name: Download common cache on branch cache miss | ||
if: ${{ steps.setup-java.outputs.cache-hit != 'true' }} | ||
uses: actions/cache/restore@v4 | ||
with: | ||
key: dataverse-maven-cache | ||
path: ~/.m2/repository |
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,32 @@ | ||
name: "Properties Check" | ||
on: | ||
pull_request: | ||
paths: | ||
- "src/**/*.properties" | ||
- "scripts/api/data/metadatablocks/*" | ||
jobs: | ||
duplicate_keys: | ||
name: Duplicate Keys | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run duplicates detection script | ||
shell: bash | ||
run: tests/check_duplicate_properties.sh | ||
|
||
metadata_blocks_properties: | ||
name: Metadata Blocks Properties | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup GraalVM + Native Image | ||
uses: graalvm/setup-graalvm@v1 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
java-version: '21' | ||
distribution: 'graalvm-community' | ||
- name: Setup JBang | ||
uses: jbangdev/setup-jbang@main | ||
- name: Run metadata block properties verification script | ||
shell: bash | ||
run: tests/verify_mdb_properties.sh |
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.