Skip to content

Commit

Permalink
handle convert to draft
Browse files Browse the repository at this point in the history
  • Loading branch information
mydea committed Sep 9, 2024
1 parent a057d8f commit cd05e7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/project-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ on:
- opened
- reopened
- ready_for_review
- converted_to_draft

jobs:
# When a PR is a draft, it should go into "In Progress"
mark_as_in_progress:
if: |
(github.event.action == 'opened' || github.event.action == 'reopened')
(github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'converted_to_draft')
&& github.event.pull_request.draft == true
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit cd05e7b

Please sign in to comment.