alamb commented on code in PR #14331:
URL: https://github.com/apache/datafusion/pull/14331#discussion_r1934303034
##########
.github/workflows/extended.yml:
##########
@@ -31,14 +31,38 @@ on:
push:
branches:
- main
+ issue_comment:
+ types: [created]
+
+permissions:
+ pull-requests: write
jobs:
+ # Check issue comment and notify that extended tests are running
+ check_issue_comment:
+ name: Check issue comment
+ runs-on: ubuntu-latest
+ if: github.event.issue.pull_request && github.event.comment.body == 'run
extended tests'
+ steps:
+ - uses: actions/github-script@v7
+ with:
+ github-token: ${{secrets.GITHUB_TOKEN}}
+ script: |
+ github.rest.issues.createComment({
Review Comment:
I tried it in my fork, see this PR:
- https://github.com/alamb/datafusion/pull/28
It seems to have worked great

Here is the workflow run:
https://github.com/alamb/datafusion/actions/runs/13036912907
I am going to wait to see what happens on success and then I will purposely
introduce a failure in extended tests and see what happens
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]