Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/generate_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ jobs:
generate-client-library:
name: "Generate and update client library"
runs-on: ubuntu-latest
if: ${{ !(github.actor == 'pyansys-ci-bot' && github.event.action == 'synchronize') }}
# Skip if PR is triggered by pyansys-ci-bot or if PR is created by dependabot with 'uv' label
if: |
${{
!(github.actor == 'pyansys-ci-bot' && github.event.action == 'synchronize') &&
!(github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'uv'))
}}
env:
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/')) }}
steps:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
contents: read
pull-requests: write
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
# Skip for dependabot PRs as dependabot handles its own labelling
if: github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- name: Label based on changed files
uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b #v6.0.1
Expand All @@ -36,6 +37,8 @@ jobs:

commenter:
runs-on: ubuntu-latest
# Skip for dependabot PRs as dependabot handles its own labelling
if: github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]'
steps:
- name: Suggest to add labels
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 #v5.0.0
Expand Down
2 changes: 1 addition & 1 deletion ansys-grantami-serverapi-openapi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module-name = "ansys.grantami.serverapi_openapi"
[project]
name = "ansys-grantami-serverapi-openapi"
description = "Autogenerated client library for the Granta MI Server API."
version = "5.2.0.dev971"
version = "5.2.0.dev977"
license = "MIT"
requires-python = ">=3.10"
authors = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "5.2.0.dev971"
__version__ = "5.2.0.dev977"
2 changes: 1 addition & 1 deletion ansys-grantami-serverapi-openapi/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.