Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
update: WORKFLOW
Browse files Browse the repository at this point in the history
  • Loading branch information
harshraj8843 committed Dec 17, 2022
1 parent e662513 commit b2a1318
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions WORKFLOW.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,33 @@ The basic workflow for the project can be described as follows:

```mermaid
graph LR
1A[Issue] --Labeled--> 1B{good first issue}
1A --Reopened--> 1B
1A --Unassigned--> 1B
1B --Store--> 1C((Database))
A1[Github App] --> A2[Issues Created]
A1 --> A3[Issue Reopened]
A1 --> A4[Issue Labeled]
A1 --> A5[Issue Unassigned]
A2 --> B1{Check for GFI label}
A3 --> B1
A4 --> B1
A5 --> B1
B1 -->|Yes| B2[Add Issue]
B2 --> DB(Database)
1C --Retrieve--> 2A[Website]
A1 --> C1[Issue Closed]
A1 --> C2[Issue Assigned]
A1 --> C3[Issue Unlabeled]
A1 --> C4[Issue Deleted]
C1 --> D1{Check for GFI label}
C2 --> D1
C3 --> D1
C4 --> D1
D1 -->|Yes| D2[Remove Issue]
D2 --> DB
D2 --> D3[Delete Tweet]
D3 --> TW(Twitter)
1C --Every 5 minutes--> 3A[Tweet]
DB --> E1(Scheduler)
E1 --> | Every 5 minutes | E2[Post Tweet]
E2 --> TW
1A --Unlabeled--> 4A{good first issue}
1A --Closed--> 4A
1A --Assigned--> 4A
1A --Deleted--> 4A
4A --> 4B[Delete Tweet]
4B --Delete--> 1C
DB --> | API | WB(Website)
```

1 comment on commit b2a1318

@vercel
Copy link

@vercel vercel bot commented on b2a1318 Dec 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.