-
Notifications
You must be signed in to change notification settings - Fork 3
#8 step summary #10
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
#8 step summary #10
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ff7f6ac
Creating new entrypoint using step summary
evealitaylor 87a5c14
feat(JabRef#8):Creating new entrypoint using step summary
evealitaylor 9c0cfc2
feat(JabRef#8):Configuring Dockerfile to use new entrypoint
evealitaylor f16de5d
docs(JabRef#8):Additional documentation explaining step summary output
evealitaylor a799735
Merge remote-tracking branch 'origin/#8-step-summary' into #8-step-su…
evealitaylor 6211008
feat(JabRef#8):Adjusted dockerfile to retain corresponding dockerfile…
evealitaylor 5196ee1
feat(JabRef#8):Adding reference to porcelain in entrypoint
evealitaylor 85f7aeb
Fix execution flag for entrypoint.sh
koppor b14812e
Fix comment char
koppor d6e7e26
Fix double porcelain
koppor 6eae735
Fix double check-consistency
koppor a842642
Use tee
koppor d997dc4
Have the action failing
koppor 1ba447f
Add library as heading
koppor 46dc26a
Output if no inconsistencies
koppor 44d2ff7
Smaller headings
koppor 411b519
Update README to specify job summary link
koppor 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,4 +1,6 @@ | ||
| // Corresponding Dockerfile: https://github.com/JabRef/jabref/blob/main/Dockerfile.jabkit | ||
| # Corresponding Dockerfile: https://github.com/JabRef/jabref/blob/main/Dockerfile.jabkit | ||
| FROM ghcr.io/jabref/jabkit:edge | ||
|
|
||
| ENTRYPOINT ["/jabref/jabkit/bin/jabkit"] | ||
| COPY entrypoint.sh /entrypoint.sh | ||
|
|
||
| ENTRYPOINT ["/entrypoint.sh"] | ||
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 |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| #!/usr/bin/env bash | ||
| set -o pipefail | ||
|
|
||
| echo "## $1" >> $GITHUB_STEP_SUMMARY | ||
| echo "" >> $GITHUB_STEP_SUMMARY | ||
|
|
||
| shift | ||
|
|
||
| /jabref/jabkit/bin/jabkit "$@" 2>&1 | tee -a "$GITHUB_STEP_SUMMARY" | ||
|
|
||
| exit_code=${PIPESTATUS[0]} | ||
|
|
||
| if [ "$exit_code" -eq 0 ]; then | ||
| echo "✅ no inconsistencies" | tee -a "$GITHUB_STEP_SUMMARY" | ||
| fi | ||
|
|
||
| exit "$exit_code" |
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.