Skip to content

Commit

Permalink
fix branch computation in milestone bot
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 25, 2020
1 parent e697b7f commit 88cbac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-auto-milestone.yml
Expand Up @@ -76,7 +76,7 @@ jobs:
echo "RE_RUN_JOB: ${RE_RUN_JOB}"
# Get the base branch
BASE_BRANCH=$(echo "${JSON_DATA}" | jq ".repository.pullRequests.edges[] | select( .node.number == ${PR_NUMBER} ) | .node.baseRef.name")
BASE_BRANCH=$(echo "${JSON_DATA}" | jq -r ".repository.pullRequests.edges[] | select( .node.number == ${PR_NUMBER} ) | .node.baseRef.name")
echo "BASE_BRANCH: ${BASE_BRANCH}"
# master => NOTHING, release_3-10 => _10
Expand Down

0 comments on commit 88cbac9

Please sign in to comment.