Skip to content

Commit

Permalink
feat: improve metrics for variables (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkstrp authored Sep 2, 2024
1 parent a9650e7 commit 0e6dedf
Show file tree
Hide file tree
Showing 3 changed files with 275 additions and 143 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ runs:
# Get static plot list (from input)
read -a plots_array_input <<< ${{ inputs.plots }}
# Get dynamic plot list (from comment script)
read -a plots_array_dynamic <<< "$(python draft_comment.py plots)"
read -a plots_array_dynamic <<< "$(python scripts/draft_comment.py plots)"
plots_array=("${plots_array_input[@]}" "${plots_array_dynamic[@]}")
Expand Down Expand Up @@ -294,7 +294,7 @@ runs:
# Draft comment
# Note: The script uses many env variables. See the script for more details.
python draft_comment.py > $GITHUB_WORKSPACE/comment.txt
python scripts/draft_comment.py > $GITHUB_WORKSPACE/comment.txt
shell: bash

Expand Down
Loading

0 comments on commit 0e6dedf

Please sign in to comment.