Skip to content

Commit

Permalink
add echo statements to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushi-agrawal-gladstone authored Oct 1, 2024
1 parent cbb7dae commit a270c61
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/1_on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -879,9 +879,11 @@ jobs:
# Extract nodes that were removed from the GPML file (lines starting with '-')
deleted_nodes=$(echo "$diff_output" | grep "^-" | grep '<DataNode' | sed 's/^-//')
echo "Deleted nodes: $deleted_nodes"
# Extract nodes that were added or changed in the GPML file (lines starting with '+')
added_or_modified_nodes=$(echo "$diff_output" | grep "^+" | grep '<DataNode' | sed 's/^+//')
echo "Added/modified nodes: $added_or_modified_nodes"
# Check for matching GraphId in both deleted and added/modified nodes to determine if it was modified
modified_nodes=""
Expand Down

0 comments on commit a270c61

Please sign in to comment.