Skip to content

Commit

Permalink
Merge pull request #44 from keep-network/fix-workflow-generating-docs
Browse files Browse the repository at this point in the history
Fix extracting of org from org/repo name in workflow generating docs
  • Loading branch information
pdyraga committed Jun 20, 2023
2 parents 6cb91a9 + 84cf2fc commit e9834bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-solidity-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
echo "▶ Push commit"
git push --set-upstream origin HEAD:$head_branch
echo "▶ Check if PR for the head branch already exists"
dest_org=${${{ inputs.destinationRepo }}%%/*}
dest_org=$(echo ${{ inputs.destinationRepo }} | cut -d'/' -f1)
pr_for_head=$(curl -L \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $API_TOKEN_GITHUB" \
Expand Down

0 comments on commit e9834bd

Please sign in to comment.