Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Analyze all languages instead of only primary language #72

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6ae6d42
nothing to commit, working tree clean #62
PrimeEagle Nov 21, 2023
ca930de
Update README.es-es.md
PrimeEagle Nov 21, 2023
d606e8e
Update README.ja-jp.md
PrimeEagle Nov 21, 2023
0731183
Merge pull request #1 from PrimeEagle/nothing-to-commit,-working-tree…
PrimeEagle Nov 21, 2023
db099f3
update to use MAX_LANGUAGES environment variable, or default to 5 if …
PrimeEagle Nov 21, 2023
f95894a
added check for IGNORE_LANGUAGES environment variable, which is a com…
PrimeEagle Nov 21, 2023
f5612de
Update README.md
PrimeEagle Nov 21, 2023
1ac0f0d
Update README.es-es.md
PrimeEagle Nov 21, 2023
9937c80
Update README.ja-jp.md
PrimeEagle Nov 21, 2023
7a26d44
Merge pull request #3 from PrimeEagle/allow-ignoring-of-languages-for…
PrimeEagle Nov 21, 2023
dadf092
Update create-pie-language.ts
PrimeEagle Nov 24, 2023
0a9212e
Merge pull request #4 from PrimeEagle/add-percentage-to-languages
PrimeEagle Nov 24, 2023
f29f5af
Update create-pie-language.ts
PrimeEagle Nov 25, 2023
5f6e510
Update create-pie-language.ts
PrimeEagle Nov 25, 2023
c3c3f64
updated languages to show percentages
PrimeEagle Nov 25, 2023
d19ee31
Merge pull request #5 from PrimeEagle/add-percentage-to-languages
PrimeEagle Nov 25, 2023
1567ee2
Update create-pie-language.ts
PrimeEagle Nov 27, 2023
1832c01
Update create-pie-language.ts
PrimeEagle Nov 27, 2023
ca8839b
test
PrimeEagle Nov 27, 2023
152eb37
Merge branch 'main' of https://github.com/PrimeEagle/github-profile-3…
PrimeEagle Nov 27, 2023
305d386
revert test
PrimeEagle Nov 27, 2023
c6ab2a5
add
PrimeEagle Nov 27, 2023
8cebe26
modify to query all languages
PrimeEagle Nov 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,11 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
USERNAME: ${{ github.repository_owner }}
- name: Commit & Push
run: |
git config user.name github-actions
git config user.email [email protected]
git add -A .
git commit -m "generated"
git push
run: |
git config user.name github-actions
git config user.email [email protected]
git add -A .
git diff --staged --exit-code || (git commit -m "generated" && git push)
```

Note: If you also want to include the private repository, register the "personal access token" in the repository and set it to GITHUB_TOKEN specified in the workflow file.
Expand All @@ -67,6 +66,8 @@ This will add the action to the repository.
* `GITHUB_TOKEN` : (required) access token
* `USERNAME` : (required) target user name (or specify with an argument).
* `MAX_REPOS` : (optional) max repositories, default 100 - since ver. 0.2.0
* `MAX_LANGUAGES` : (optional) maximum number of languages to display on pie chart, default 5.
* `IGNORE_LANGUAGES` : (optional) comma delimited list of languages to ignore.
* `SETTING_JSON` : (optional) settings json file path. See `sample-settings/*.json` and `src/type.ts` in `yoshi389111/github-profile-3d-contrib` repository for details. - since ver. 0.6.0

### step 3. Manually launch the action
Expand Down
Loading