mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2026-05-05 05:06:45 +08:00
- Created resume.tex using Awesome CV template. - Added personal information including name, position, contact details, and social links. - Included sections for summary, skills, work experience, education, projects, extracurricular activities, honors & awards, certificates, committees, presentations, and writing. - Implemented detailed descriptions for each section, highlighting relevant experiences and achievements. - Added binary files for resume output (resume.pdf and resume.xdv).
41 lines
1 KiB
YAML
41 lines
1 KiB
YAML
name: Label Pull Requests
|
|
|
|
on:
|
|
- pull_request_target
|
|
|
|
jobs:
|
|
label-pr:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Add Labels for PR
|
|
uses: actions/labeler@v5
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
configuration-path: .github/labeler.yaml
|
|
sync-labels: true
|
|
|
|
- name: Add PR Size Labels for PR
|
|
uses: codelytv/pr-size-labeler@v1
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
xs_label: "size/XS"
|
|
xs_max_size: "20"
|
|
s_label: "size/S"
|
|
s_max_size: "100"
|
|
m_label: "size/M"
|
|
m_max_size: "500"
|
|
l_label: "size/L"
|
|
l_max_size: "1000"
|
|
xl_label: "size/XL"
|
|
fail_if_xl: "false"
|
|
message_if_xl: >
|
|
'This PR has too many changes.
|
|
Please make sure you are NOT addressing multiple issues with one PR.'
|
|
files_to_ignore: |
|
|
"src/*"
|
|
"*.otf"
|
|
"*.pdf"
|
|
"*.png"
|
|
"*.sty"
|
|
"*.ttf"
|