Skip to content

Commit

Permalink
Merge pull request #451 from RushiChaganti/alphonse
Browse files Browse the repository at this point in the history
Added Zipcode to Addresses in Auto Jobs Applier (#407)  Issue Resolved: #407
  • Loading branch information
feder-cr authored Oct 1, 2024
2 parents e1d1ea8 + 9bb586f commit 2616061
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ Each section has specific fields to fill out:
- **country**: The country where you currently reside.
- **city**: The city where you currently live.
- **address**: Your full address, including street and number.
- **zip_code**: Your postal/ZIP code.
- **phone_prefix**: The international dialing code for your phone number (e.g., +1 for the USA, +44 for the UK).
- **phone**: Your phone number without the international prefix.
- **email**: Your primary email address.
Expand All @@ -275,6 +276,7 @@ Each section has specific fields to fill out:
country: "USA"
city: "New York"
address: "123 Main St"
zip_code: "520123"
phone_prefix: "+1"
phone: "5551234567"
email: "jane.doe@example.com"
Expand Down
3 changes: 2 additions & 1 deletion assets/resume_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ personal_information:
surname: {type: string}
date_of_birth: {type: string, format: date}
country: {type: string}
zip_code: {type: string, pattern: "^[0-9]{5,10}$"}
city: {type: string}
address: {type: string}
phone_prefix: {type: string, format: phone_prefix}
phone: {type: string, format: phone}
email: {type: string, format: email}
github: {type: string, format: uri}
linkedin: {type: string, format: uri}
required: [name, surname, date_of_birth, country, city, address, phone_prefix, phone, email]
required: [name, surname, date_of_birth, country, city, address,zip_code, phone_prefix, phone, email]

education_details:
type: array
Expand Down
1 change: 1 addition & 0 deletions data_folder/plain_text_resume.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ personal_information:
country: "[Your Country]"
city: "[Your City]"
address: "[Your Address]"
zip_code: "[Your zip code]"
phone_prefix: "[Your Phone Prefix]"
phone: "[Your Phone Number]"
email: "[Your Email Address]"
Expand Down
1 change: 1 addition & 0 deletions data_folder_example/plain_text_resume.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ personal_information:
date_of_birth: "12/01/1861"
country: "Ireland"
city: "Dublin"
zip_code: "520123"
address: "12 Fox road"
phone_prefix: "+1"
phone: "7819117091"
Expand Down

0 comments on commit 2616061

Please sign in to comment.