Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
List of MorphoCloudWorkflow changes:

```
$ git shortlog 343fe41..517b38b --no-merges
Jean-Christophe Fillion-Robin (1):
      test2
```

See MorphoCloud/MorphoCloudWorkflow@343fe41...517b38b
  • Loading branch information
jcfr committed Dec 15, 2024
1 parent e79b8c9 commit 45a0c48
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/extract-issue-fields/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ runs:
instance_flavor=$(
cat <<'EOF' | \
jq -r '."cloud-computing-instance-flavor".text | split(" - ")[0]'
${{ toJSON(steps.parse.outputs.data) }}
${{ steps.parse.outputs.data }}
EOF)
echo "instance_flavor [$instance_flavor]"
echo "instance_flavor=$instance_flavor" >> $GITHUB_OUTPUT
orcid=$(
cat <<'EOF' | \
jq -r ".orcid.text"
${{ toJSON(steps.parse.outputs.data) }}
${{ steps.parse.outputs.data }}
EOF
)
echo "orcid [$orcid]"
Expand All @@ -78,7 +78,7 @@ runs:
cat <<'EOF' | \
jq -r ".email.text" | \
sed -E 's/^<([^<>]+)>$/\1/'
${{ toJSON(steps.parse.outputs.data) }}
${{ steps.parse.outputs.data }}
EOF
)
echo "email [$email]"
Expand All @@ -89,7 +89,7 @@ runs:
cat <<'EOF' | \
jq -r '."confirm-email".text // empty' | \
sed -E 's/^<([^<>]+)>$/\1/'
${{ toJSON(steps.parse.outputs.data) }}
${{ steps.parse.outputs.data }}
EOF
)
Expand Down

0 comments on commit 45a0c48

Please sign in to comment.