We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05351ae commit f66457bCopy full SHA for f66457b
.github/workflows/sanity.yml
@@ -90,6 +90,13 @@ on:
90
]
91
required: false
92
type: string
93
+ unstable:
94
+ default: >-
95
+ [
96
+ "devel",
97
+ ]
98
+ required: false
99
+ type: string
100
101
jobs:
102
sanity:
@@ -118,7 +125,7 @@ jobs:
118
125
exclude: ${{ fromJSON(inputs.matrix_exclude) }}
119
126
include: ${{ fromJSON(inputs.matrix_include) }}
120
127
runs-on: ${{ matrix.os }}
121
- continue-on-error: ${{ matrix.ansible-version == 'devel' }}
128
+ continue-on-error: ${{ contains(fromJSON(inputs.unstable), matrix.ansible-version) }}
122
129
123
130
name: "py${{ matrix.python-version }} / ${{ matrix.os }} / ${{ matrix.ansible-version }}"
124
131
steps:
0 commit comments