-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add for all dev branch #861
Conversation
@@ -17,7 +17,7 @@ on: | |||
branches: | |||
- main | |||
- release/v* | |||
- dev | |||
- dev/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We still have a dev
branch even if it isn't really in use. Should we still have the CI run on it? This change will remove that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are two ways for us to change it: one is to rename the branch as dev/ and second is that change the prefix pattern to dev*. I prefer the former one since it will avoid some of the naming convention that may be confused with dev*.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The other way is to just have two entries
- dev
- dev/*
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reasonable. Fixed it.
Description:
For all of the branch that has the prefix "dev", it would trigger the CI. In this way, we can test the CI.
Testing:
An alternative solution would be using act https://github.com/nektos/act