We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
main
1 parent 24a20d3 commit 9934332Copy full SHA for 9934332
.github/workflows/build.yml
@@ -670,9 +670,12 @@ jobs:
670
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
671
NPM_CONFIG_PROVENANCE: true
672
run: |
673
- git config user.email 'github-actions[bot]'
674
- git config user.name 'github-actions[bot]@users.noreply.github.com'
675
- yarn nx release --yes
+ git fetch origin trunk
+ if git merge-base --is-ancestor origin/trunk HEAD; then
+ git config user.email 'github-actions[bot]'
676
+ git config user.name 'github-actions[bot]@users.noreply.github.com'
677
+ yarn nx release --yes
678
+ fi
679
autobot:
680
name: "Autobot"
681
permissions:
0 commit comments