Skip to content

Commit b10b54c

Browse files
authored
feat: warn not to use centaurs (#434)
### Description Warn when `centaurs` is used. ### Checklist - [ ] `README.md` has been updated or is not required - [ ] push trigger tests - [ ] manual release test - [ ] automated releases test - [x] pull request trigger tests - [ ] schedule trigger tests - [ ] workflow errors/warnings reviewed and addressed ### Testing done * https://github.com/splunk/splunk-add-on-for-microsoft-office-365/actions/runs/17073350867/job/48408007804?pr=863
1 parent 02fb5a5 commit b10b54c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/reusable-build-test-release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,18 @@ jobs:
126126
exit 1
127127
fi
128128
129+
check-splunktafunctionaltests-exists:
130+
runs-on: ubuntu-latest
131+
steps:
132+
- uses: actions/checkout@v4
133+
- run: |
134+
if grep -q 'splunktafunctionaltests' poetry.lock; then
135+
echo "::warning title=\"splunktafunctionaltests\" should NOT be used for modinput tests::For more details, please see https://splunk.slack.com/archives/C081JT7R69Z/p1754662758743839."
136+
exit 1
137+
else
138+
exit 0
139+
fi
140+
129141
check-docs-changes:
130142
runs-on: ubuntu-latest
131143
outputs:

0 commit comments

Comments
 (0)