internal: fix flows (#5797)

* remove test line

* fix claude
This commit is contained in:
centdix
2025-05-22 12:35:44 +02:00
committed by GitHub
parent 3fbebcdef5
commit d9bd80b280
2 changed files with 10 additions and 2 deletions
+1 -1
View File
@@ -273,7 +273,7 @@ jobs:
--read .cursor/rules/windmill-overview.mdc \
$FILES_TO_EDIT \
--model gemini/gemini-2.5-pro-preview-05-06 \
--message "create a test file in backend/test.txt with hello world in it" \
--message-file .aider_final_prompt.txt \
--yes \
--no-check-update \
--auto-commits \
+9 -1
View File
@@ -24,10 +24,18 @@ jobs:
- name: Check organization membership
id: check-membership
env:
COMMENTER: ${{ github.event_name == 'issue_comment' || github.event_name == 'pull_request_review_comment' ? github.event.comment.user.login : github.event_name == 'pull_request_review' ? github.event.review.user.login : github.event.issue.user.login }}
ORG_ACCESS_TOKEN: ${{ secrets.ORG_ACCESS_TOKEN }}
run: |
ORG="windmill-labs"
if [[ "${{ github.event_name }}" == "issue_comment" || "${{ github.event_name }}" == "pull_request_review_comment" ]]; then
COMMENTER="${{ github.event.comment.user.login }}"
elif [[ "${{ github.event_name }}" == "pull_request_review" ]]; then
COMMENTER="${{ github.event.review.user.login }}"
else
COMMENTER="${{ github.event.issue.user.login }}"
fi
STATUS=$(curl -s -o /dev/null -w "%{http_code}" \
-H "Authorization: token $ORG_ACCESS_TOKEN" \
-H "Accept: application/vnd.github+json" \