Skip to content

Commit 4932588

Browse files
fix: remove Stale label when Devin starts completing a stale PR (calcom#26909)
* fix: remove Stale label when Devin starts completing a stale PR Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * fix: update Devin prompt to remove Stale label after pushing changes Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * fix: use lowercase 'stale' label to match repository label Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * Update stale-pr-devin-completion.yml --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent eb2fedf commit 4932588

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/stale-pr-devin-completion.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ permissions:
1717
jobs:
1818
complete-stale-pr:
1919
name: Trigger Devin to Complete Stale Community PR
20-
# For labeled events: only run if 'stale' label was added
20+
# For labeled events: only run if 'Stale' label was added
2121
# For workflow_dispatch: always run (we'll validate the PR in the steps)
2222
if: >
2323
github.event_name == 'workflow_dispatch' ||
24-
github.event.label.name == 'stale'
24+
github.event.label.name == 'Stale'
2525
runs-on: blacksmith-2vcpu-ubuntu-2404
2626
steps:
2727
- name: Get PR details
@@ -201,8 +201,8 @@ jobs:
201201
6. Run the appropriate checks (lint, type-check, tests) to ensure the PR is ready for review.
202202
7. Commit your changes with clear commit messages.
203203
8. Push your changes to the PR branch.
204-
9. Post a summary comment on the PR explaining what you completed.
205-
10. Remove the 'stale' label from the PR if you've completed the work.
204+
9. After successfully pushing, remove the 'Stale' label from the PR.
205+
10. Post a summary comment on the PR explaining what you completed.
206206
11. Mark the PR as ready for review if applicable.
207207
208208
Rules and Guidelines:

0 commit comments

Comments
 (0)