Skip to content

Commit c33cf92

Browse files
authored
Allow pyansys-ci-bot to trigger CI on PR create (#478)
Co-authored-by: Andy-Grigg <[email protected]>
1 parent 97ae2dd commit c33cf92

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/generate_library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
generate-client-library:
1414
name: "Generate and update client library"
1515
runs-on: ubuntu-latest
16-
if: ${{ github.actor != 'pyansys-ci-bot' }}
16+
if: ${{ !(github.actor == 'pyansys-ci-bot' && github.event.action == 'synchronize') }}
1717
env:
1818
IS_RELEASE_BRANCH: ${{ (github.event_name == 'pull_request' && startsWith(github.event.pull_request.base.ref, 'release/')) || (github.event_name == 'workflow_dispatch' && startsWith(github.ref_name, 'release/')) }}
1919
steps:

ansys-grantami-serverapi-openapi/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
name = "ansys-grantami-serverapi-openapi"
77
description = "Autogenerated client library for the Granta MI Server API."
8-
version = "5.1.0.dev683"
8+
version = "5.1.0.dev686"
99
license = "MIT"
1010
authors = ["ANSYS, Inc. <[email protected]>"]
1111
maintainers = ["ANSYS, Inc. <[email protected]>"]

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
# SOFTWARE.
2222

23-
__version__ = "5.1.0.dev683"
23+
__version__ = "5.1.0.dev686"

0 commit comments

Comments
 (0)