chore: skip wiredeps on backport branches
This commit is contained in:
parent
70d38eb447
commit
e4e4aacce9
|
@ -4,11 +4,21 @@ FEATURE_BRANCH=
|
|||
|
||||
# https://docs.github.com/en/actions/reference/environment-variables#default-environment-variables
|
||||
|
||||
# skip default branch and tags
|
||||
if [[ $GITHUB_REF =~ ^refs/heads/master$ ]] || [[ $GITHUB_REF =~ ^refs/tags/ ]]; then
|
||||
# skip master / backport branches and tags
|
||||
if [[ "$GITHUB_REF" =~ ^refs/heads/(master$|[0-9]+\.x) ]] || [[ "$GITHUB_REF" =~ ^refs/tags/ ]]; then
|
||||
echo "Skip wiredeps: master/backport branch";
|
||||
|
||||
exit 0;
|
||||
fi
|
||||
|
||||
# skip PR builds targeting master or backport branches
|
||||
if [[ "$GITHUB_BASE_REF" =~ ^(master$|[0-9]+\.x) ]]; then
|
||||
echo "Skip wiredeps: targets master/backport branch";
|
||||
|
||||
exit 0;
|
||||
fi
|
||||
|
||||
|
||||
# GITHUB_HEAD_REF is set for pull request
|
||||
FEATURE_BRANCH=$([ $GITHUB_HEAD_REF != "" ] && echo $GITHUB_HEAD_REF || echo "$GITHUB_REF" | cut -d"/" -f3)
|
||||
|
||||
|
@ -20,4 +30,4 @@ if [ $? -ne 0 ]; then
|
|||
echo "Falling back to diagram-js@develop";
|
||||
|
||||
npm install "diagram-js@bpmn-io/diagram-js#develop";
|
||||
fi
|
||||
fi
|
Loading…
Reference in New Issue