You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's up to you to write your GitHub Actions workflow so that it only runs when you want it to. For example, you could use the branches keyword to limit your workflow to only running on pushes to the master branch, like this:
on:
push:
branches:
- master
Or, if you want most of your workflow to run, but only want to run the publish step on master, then you can use the if keyword, like this:
Having an issue where it's publishing when a version bump is in an unmerged PR
The text was updated successfully, but these errors were encountered: