-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
…s/osdc into update-function-flow
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Assign author to their PR | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- reopened | ||
- opened | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
assign-author-to-pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Assign PR to author | ||
run: | | ||
gh pr edit $PR --add-assignee $AUTHOR | ||
env: | ||
AUTHOR: ${{ github.event.pull_request.user.login }} | ||
PR: ${{ github.event.pull_request.html_url }} | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Generate SVG from PlantUML | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '**.puml' | ||
|
||
jobs: | ||
generate-plantuml: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: plantuml | ||
id: plantuml | ||
uses: grassedge/[email protected] | ||
with: | ||
message: "chore: :bento: (re-)generate `.svg` from `.puml` files" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,3 +33,4 @@ polycystic | |
pseudonymised | ||
reproducibility | ||
semaglutid | ||
traceback |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
@_default: | ||
just --list --unsorted | ||
|
||
# Generate PNG images from all PlantUML files | ||
# Generate svg images from all PlantUML files | ||
generate-puml-all: | ||
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:1.2024.3 -tpng "**/*.puml" | ||
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:1.2024.3 -tsvg "**/*.puml" | ||
|
||
# Generate PNG image from specific PlantUML file | ||
# Generate svg image from specific PlantUML file | ||
generate-puml name: | ||
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:1.2024.3 -tpng "**/{{name}}.puml" | ||
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:1.2024.3 -tsvg "**/{{name}}.puml" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
# There is a warning when using Arrow about using pull. It says to set | ||
# this option. | ||
options(arrow.pull_as_vector = TRUE) | ||
options( | ||
# There is a warning when using Arrow about using pull. It says to set | ||
# this option. | ||
arrow.pull_as_vector = TRUE, | ||
# DuckDB outputs a lot of messages, this stops that. | ||
duckdb.materialize_message = FALSE | ||
) | ||
# By default, duckplyr logs messages and outputs them when it runs. | ||
# Adding these options so the test output looks cleaner. | ||
Sys.setenv(DUCKPLYR_FALLBACK_COLLECT = 0) | ||
Sys.setenv(DUCKPLYR_FALLBACK_VERBOSE = FALSE) |