Skip to content

Commit 2c41da3

Browse files
authored
Maintenance/accept dispatch (#645)
1 parent 9b842f4 commit 2c41da3

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ on:
88
push:
99
branches:
1010
- master
11+
workflow_dispatch:
12+
inputs:
13+
standalone_branch_suffix:
14+
description: 'Suffix of the branch on standalone'
15+
required: true
16+
default: ''
17+
1118

1219
concurrency:
1320
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -59,6 +66,7 @@ jobs:
5966
python_versions: '["3.8"]'
6067
wheel: true
6168
wheelhouse: false
69+
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '' }}
6270
secrets: inherit
6371

6472
docker_tests:

.github/workflows/tests.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ on:
2424
required: false
2525
type: string
2626
default: true
27+
standalone_suffix:
28+
description: "Suffix of the branch on standalone"
29+
required: false
30+
type: string
31+
default: ''
2732
# Can be called manually
2833
workflow_dispatch:
2934
inputs:
@@ -52,6 +57,11 @@ on:
5257
required: false
5358
type: string
5459
default: 'true'
60+
standalone_suffix:
61+
description: "Suffix of the branch on standalone"
62+
required: false
63+
type: string
64+
default: ''
5565

5666
env:
5767
PACKAGE_NAME: ansys-dpf-core
@@ -101,6 +111,7 @@ jobs:
101111
wheel: ${{ inputs.wheel }}
102112
wheelhouse: ${{ inputs.wheelhouse }}
103113
extra-pip-args: ${{ env.extra }}
114+
standalone_suffix: ${{ inputs.standalone_suffix }}
104115

105116
- name: "Install ansys-grpc-dpf==0.4.0"
106117
if: inputs.ANSYS_VERSION == 221

0 commit comments

Comments
 (0)