Created
March 28, 2019 01:48
-
-
Save arnaudbos/a60ff65337006fb5bdbf7c50b803f251 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
graph TD | |
classDef diamond fill:#e7f2f8,stroke:#e7f2f8,stroke-width:2px; | |
classDef squared fill:#efe7bf,stroke:#F3D655,stroke-width:2px; | |
classDef rounded fill:#e7f2f8,stroke:#00afef,stroke-width:2px; | |
sourcing(Sourcing) --> screening(Phone/Mail contact) | |
screening --> monkeypatchable{Bon profil ?} | |
application(Candidature) --> monkeypatchable | |
monkeypatchable -->|Oui| first(Premier entretien) | |
monkeypatchable -->|Meh| should_call{Candidature ?} | |
should_call -->|Non| eof[fa:fa-ban EOF] | |
should_call -->|Oui| nogo(Refus téléphonique) | |
nogo --> eof | |
first --> match{Match ?} | |
match -->|Meh| eof | |
match -->|Oui| test[fa:fa-cogs Test technique] | |
test --> submitted{Complété ?} | |
submitted -->|Oui| review(Peer review) | |
submitted -->|Non| eof | |
review --> peer_review(Entretien technique) | |
peer_review --> valid{Validé ?} | |
valid -->|Ok| recruit(Entretien d'embauche) | |
valid -->|Nok| nogo | |
valid -->|Doutes| doubts(Entretien complémentaire) | |
doubts --> no_doubts{Doutes levés ?} | |
no_doubts --> |Non| nogo | |
no_doubts --> |Oui| recruit | |
recruit --> offer{Offre acceptée ?} | |
offer --> |Refusée| eof | |
offer --> |Acceptée| monkey[fa:fa-smile Monkey!] | |
class sourcing,screening,application,first,review,peer_review,doubts,nogo,recruit rounded; | |
class offer,no_dounbts,monkeypatchable,match,submitted,valid,should_call,no_doubts diamond; | |
class eof,monkey,test squared; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment