generated from maehr/github-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Multiple fixes 2603 #71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
4ccda2c
feat: update devcontainer configuration, add maintainers guide, and e…
maehr 90f303f
chore: update package-lock.json and uv.lock files
maehr 99997ad
fix: update concurrency group in workflow and enhance link checking e…
maehr 0eb7fab
fix: add missing permissions for lint jobs in workflow
maehr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -1,43 +1,43 @@ | ||
| { | ||
| "name": "Open-Research-Data Template", | ||
| "image": "mcr.microsoft.com/devcontainers/universal:2-linux", | ||
| "remoteUser": "codespace", | ||
| "features": { | ||
| "ghcr.io/rocker-org/devcontainer-features/r-rig:1": { | ||
| "version": "4.5.2", | ||
| "vscodeRSupport": "basic", | ||
| "installREnv": "true" | ||
| }, | ||
| "ghcr.io/rocker-org/devcontainer-features/quarto-cli:1": { | ||
| "version": "release", | ||
| "installTinyTex": "true", | ||
| "installChromium": "false" | ||
| }, | ||
| "ghcr.io/va-h/devcontainers-features/uv:1": { | ||
| "version": "latest", | ||
| "shellautocompletion": "true" | ||
| } | ||
| }, | ||
| "postCreateCommand": "uv sync && Rscript -e 'renv::restore()'", | ||
| "customizations": { | ||
| "vscode": { | ||
| "extensions": [ | ||
| "quarto.quarto", | ||
| "REditorSupport.r", | ||
| "astral-sh.uv", | ||
| "astral-sh.ty", | ||
| "ms-toolsai.jupyter", | ||
| "Posit.air-vscode" | ||
| ], | ||
| "settings": { | ||
| "r.rterm.option": ["--no-save", "--no-restore-data", "--quiet"], | ||
| "r.useRenvLibPath": true, | ||
| "[r]": { | ||
| "editor.defaultFormatter": "Posit.air-vscode", | ||
| "editor.formatOnSave": true | ||
| } | ||
| }, | ||
| "openFiles": ["README.md", "README.template.md"] | ||
| } | ||
| } | ||
| "name": "Open-Research-Data Template", | ||
| "image": "mcr.microsoft.com/devcontainers/universal:2-linux", | ||
| "remoteUser": "codespace", | ||
| "features": { | ||
| "ghcr.io/rocker-org/devcontainer-features/r-rig:1": { | ||
| "version": "4.5.2", | ||
| "vscodeRSupport": "basic", | ||
| "installREnv": "true" | ||
| }, | ||
| "ghcr.io/rocker-org/devcontainer-features/quarto-cli:1": { | ||
| "version": "release", | ||
| "installTinyTex": "true", | ||
| "installChromium": "false" | ||
| }, | ||
| "ghcr.io/va-h/devcontainers-features/uv:1": { | ||
| "version": "latest", | ||
| "shellautocompletion": "true" | ||
| } | ||
| }, | ||
| "postCreateCommand": "uv sync && Rscript -e 'renv::restore()'", | ||
| "customizations": { | ||
| "vscode": { | ||
| "extensions": [ | ||
| "quarto.quarto", | ||
| "REditorSupport.r", | ||
| "astral-sh.uv", | ||
| "astral-sh.ty", | ||
| "ms-toolsai.jupyter", | ||
| "Posit.air-vscode" | ||
| ], | ||
| "settings": { | ||
| "r.rterm.option": ["--no-save", "--no-restore-data", "--quiet"], | ||
| "r.useRenvLibPath": true, | ||
| "[r]": { | ||
| "editor.defaultFormatter": "Posit.air-vscode", | ||
| "editor.formatOnSave": true | ||
| } | ||
| }, | ||
| "openFiles": ["README.md", "README.template.md"] | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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,7 @@ | ||
| # Maintainers Guide | ||
|
|
||
| ## `_quarto.yml` Override Mechanism | ||
|
|
||
| The CI workflow (`.github/workflows/quarto-publish.yml`) contains a step that copies `.github/_quarto.yml` over the root `_quarto.yml` **only** when the repository is `maehr/open-research-data-template`. This override customizes the Quarto configuration for the template's own documentation site. | ||
|
|
||
| **Template instances** (repositories created from this template) are not affected by this override. If you need to customize the Quarto configuration for your project, edit the root `_quarto.yml` directly. |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| name: Create changelog | ||
|
|
||
| on: [push] | ||
| on: | ||
| push: | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| changelog: | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ | |
| _site/ | ||
|
|
||
| # Lychee link checker cache | ||
| .lycheecache/ | ||
| .lycheecache | ||
|
|
||
| # Jampack | ||
| .jampack/ | ||
|
|
||
This file contains hidden or 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 hidden or 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 @@ | ||
| 24 |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "useTabs": true, | ||
| "singleQuote": true, | ||
| "trailingComma": "none", | ||
| "printWidth": 100 | ||
| "useTabs": false, | ||
| "singleQuote": true, | ||
| "trailingComma": "none", | ||
| "printWidth": 100 | ||
| } |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1 +1,13 @@ | ||
| # Go to https://citation-file-format.github.io/ to learn more about the Citation File Format. | ||
| cff-version: 1.2.0 | ||
| title: REPO_NAME | ||
| message: >- | ||
| If you use this dataset, please cite it using the | ||
| metadata from this file. | ||
| type: dataset | ||
| authors: | ||
| - given-names: FULLNAME | ||
| email: '[INSERT CONTACT METHOD]' | ||
| repository-code: 'https://github.com/USERNAME/REPO_NAME' | ||
| license: AGPL-3.0 | ||
| version: 0.1.0 | ||
| abstract: SHORT_DESCRIPTION |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1 +1,5 @@ | ||
| ENV_VAR="Value" | ||
| # Copy this file to .env and fill in the values. | ||
| # .env is ignored by git and used for local configuration. | ||
|
|
||
| # Example: API key for an external service | ||
| # API_KEY="your-api-key-here" | ||
maehr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.