├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ ├── publish-wiki.yml │ └── test-and-lint.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── action.yml ├── api ├── cards │ ├── most-commit-language.ts │ ├── productive-time.ts │ ├── profile-details.ts │ ├── repos-per-language.ts │ └── stats.ts ├── pages │ └── demo.html ├── theme.ts └── utils │ ├── error-card.ts │ └── github-token-updater.ts ├── dist ├── index.js ├── index.js.map ├── licenses.txt ├── sourcemap-register.js ├── xhr-sync-worker.js └── xhr-sync-worker1.js ├── docs └── README.zh-tw.md ├── jest.config.json ├── package.json ├── src ├── app.ts ├── cards │ ├── most-commit-language-card.ts │ ├── productive-time-card.ts │ ├── profile-details-card.ts │ ├── repos-per-language-card.ts │ └── stats-card.ts ├── const │ ├── icon.ts │ └── theme.ts ├── github-api │ ├── commits-per-language.ts │ ├── contributions-by-year.ts │ ├── productive-time.ts │ ├── profile-details.ts │ └── repos-per-language.ts ├── templates │ ├── card.ts │ ├── donut-chart-card.ts │ ├── productive-time-card.ts │ ├── profile-details-card.ts │ └── stats-card.ts └── utils │ ├── file-writer.ts │ ├── request.ts │ └── translator.ts ├── tests ├── const │ └── theme.test.ts ├── github-api │ ├── commits-per-language.test.ts │ ├── contributions-by-year.test.ts │ ├── profile-details.test.ts │ └── repos-per-language.test.ts └── utils │ └── file-writer.test.ts ├── tsconfig.json ├── vercel.json └── wiki ├── Home.md ├── Tutorial.md ├── Tutorial_legacy.md ├── Videos.md ├── assets_legacy ├── commit-file.png ├── commit-secret.png ├── copy-token-value.png ├── create-token.png ├── edit-workflow-file.png ├── find-developer-settings.png ├── find-personal-access-tokens.png ├── find-repo-settings.png ├── find-secrets.png ├── find-setting.png ├── find-workflow-file.png ├── finish.png ├── generate-new-token.png ├── generate-token-button.png ├── new-file.png ├── new-repo-secret-button.png ├── new-repo.png ├── new-secrect.png ├── old-secret.png ├── output.png ├── permission-1.png ├── permission-2.png ├── press-use-template.png ├── run-workflow.png ├── secret-preview.png ├── type-file-name.png ├── type-repo-name.png ├── type-token-and-token-value.png ├── where-is-action.png └── where-is-add-file.png └── assets_new ├── Video_Full_Res ├── Step1.mp4 ├── Step2_Sub1.mp4 ├── Step3.mp4 ├── Step4.mp4 ├── Step6.mp4 ├── Step7.mp4 └── step5.mp4 ├── create_n_wrkflw.gif ├── edit_rdm.gif ├── edit_wrkflw.gif ├── gen_user_pac.gif ├── make_n_scrt.gif ├── make_rep_f_tmp.gif ├── run_wrkflw.gif └── special_repo.png /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/publish-wiki.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.github/workflows/publish-wiki.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.github/workflows/test-and-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.12.2 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/action.yml -------------------------------------------------------------------------------- /api/cards/most-commit-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/cards/most-commit-language.ts -------------------------------------------------------------------------------- /api/cards/productive-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/cards/productive-time.ts -------------------------------------------------------------------------------- /api/cards/profile-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/cards/profile-details.ts -------------------------------------------------------------------------------- /api/cards/repos-per-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/cards/repos-per-language.ts -------------------------------------------------------------------------------- /api/cards/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/cards/stats.ts -------------------------------------------------------------------------------- /api/pages/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/pages/demo.html -------------------------------------------------------------------------------- /api/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/theme.ts -------------------------------------------------------------------------------- /api/utils/error-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/utils/error-card.ts -------------------------------------------------------------------------------- /api/utils/github-token-updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/api/utils/github-token-updater.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /dist/xhr-sync-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/dist/xhr-sync-worker.js -------------------------------------------------------------------------------- /dist/xhr-sync-worker1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/dist/xhr-sync-worker1.js -------------------------------------------------------------------------------- /docs/README.zh-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/docs/README.zh-tw.md -------------------------------------------------------------------------------- /jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/jest.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/package.json -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/cards/most-commit-language-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/cards/most-commit-language-card.ts -------------------------------------------------------------------------------- /src/cards/productive-time-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/cards/productive-time-card.ts -------------------------------------------------------------------------------- /src/cards/profile-details-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/cards/profile-details-card.ts -------------------------------------------------------------------------------- /src/cards/repos-per-language-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/cards/repos-per-language-card.ts -------------------------------------------------------------------------------- /src/cards/stats-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/cards/stats-card.ts -------------------------------------------------------------------------------- /src/const/icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/const/icon.ts -------------------------------------------------------------------------------- /src/const/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/const/theme.ts -------------------------------------------------------------------------------- /src/github-api/commits-per-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/github-api/commits-per-language.ts -------------------------------------------------------------------------------- /src/github-api/contributions-by-year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/github-api/contributions-by-year.ts -------------------------------------------------------------------------------- /src/github-api/productive-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/github-api/productive-time.ts -------------------------------------------------------------------------------- /src/github-api/profile-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/github-api/profile-details.ts -------------------------------------------------------------------------------- /src/github-api/repos-per-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/github-api/repos-per-language.ts -------------------------------------------------------------------------------- /src/templates/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/templates/card.ts -------------------------------------------------------------------------------- /src/templates/donut-chart-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/templates/donut-chart-card.ts -------------------------------------------------------------------------------- /src/templates/productive-time-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/templates/productive-time-card.ts -------------------------------------------------------------------------------- /src/templates/profile-details-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/templates/profile-details-card.ts -------------------------------------------------------------------------------- /src/templates/stats-card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/templates/stats-card.ts -------------------------------------------------------------------------------- /src/utils/file-writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/utils/file-writer.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/src/utils/translator.ts -------------------------------------------------------------------------------- /tests/const/theme.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/tests/const/theme.test.ts -------------------------------------------------------------------------------- /tests/github-api/commits-per-language.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/tests/github-api/commits-per-language.test.ts -------------------------------------------------------------------------------- /tests/github-api/contributions-by-year.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/tests/github-api/contributions-by-year.test.ts -------------------------------------------------------------------------------- /tests/github-api/profile-details.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/tests/github-api/profile-details.test.ts -------------------------------------------------------------------------------- /tests/github-api/repos-per-language.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/tests/github-api/repos-per-language.test.ts -------------------------------------------------------------------------------- /tests/utils/file-writer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/tests/utils/file-writer.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/vercel.json -------------------------------------------------------------------------------- /wiki/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/Home.md -------------------------------------------------------------------------------- /wiki/Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/Tutorial.md -------------------------------------------------------------------------------- /wiki/Tutorial_legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/Tutorial_legacy.md -------------------------------------------------------------------------------- /wiki/Videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/Videos.md -------------------------------------------------------------------------------- /wiki/assets_legacy/commit-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/commit-file.png -------------------------------------------------------------------------------- /wiki/assets_legacy/commit-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/commit-secret.png -------------------------------------------------------------------------------- /wiki/assets_legacy/copy-token-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/copy-token-value.png -------------------------------------------------------------------------------- /wiki/assets_legacy/create-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/create-token.png -------------------------------------------------------------------------------- /wiki/assets_legacy/edit-workflow-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/edit-workflow-file.png -------------------------------------------------------------------------------- /wiki/assets_legacy/find-developer-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/find-developer-settings.png -------------------------------------------------------------------------------- /wiki/assets_legacy/find-personal-access-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/find-personal-access-tokens.png -------------------------------------------------------------------------------- /wiki/assets_legacy/find-repo-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/find-repo-settings.png -------------------------------------------------------------------------------- /wiki/assets_legacy/find-secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/find-secrets.png -------------------------------------------------------------------------------- /wiki/assets_legacy/find-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/find-setting.png -------------------------------------------------------------------------------- /wiki/assets_legacy/find-workflow-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/find-workflow-file.png -------------------------------------------------------------------------------- /wiki/assets_legacy/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/finish.png -------------------------------------------------------------------------------- /wiki/assets_legacy/generate-new-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/generate-new-token.png -------------------------------------------------------------------------------- /wiki/assets_legacy/generate-token-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/generate-token-button.png -------------------------------------------------------------------------------- /wiki/assets_legacy/new-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/new-file.png -------------------------------------------------------------------------------- /wiki/assets_legacy/new-repo-secret-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/new-repo-secret-button.png -------------------------------------------------------------------------------- /wiki/assets_legacy/new-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/new-repo.png -------------------------------------------------------------------------------- /wiki/assets_legacy/new-secrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/new-secrect.png -------------------------------------------------------------------------------- /wiki/assets_legacy/old-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/old-secret.png -------------------------------------------------------------------------------- /wiki/assets_legacy/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/output.png -------------------------------------------------------------------------------- /wiki/assets_legacy/permission-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/permission-1.png -------------------------------------------------------------------------------- /wiki/assets_legacy/permission-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/permission-2.png -------------------------------------------------------------------------------- /wiki/assets_legacy/press-use-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/press-use-template.png -------------------------------------------------------------------------------- /wiki/assets_legacy/run-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/run-workflow.png -------------------------------------------------------------------------------- /wiki/assets_legacy/secret-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/secret-preview.png -------------------------------------------------------------------------------- /wiki/assets_legacy/type-file-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/type-file-name.png -------------------------------------------------------------------------------- /wiki/assets_legacy/type-repo-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/type-repo-name.png -------------------------------------------------------------------------------- /wiki/assets_legacy/type-token-and-token-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/type-token-and-token-value.png -------------------------------------------------------------------------------- /wiki/assets_legacy/where-is-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/where-is-action.png -------------------------------------------------------------------------------- /wiki/assets_legacy/where-is-add-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_legacy/where-is-add-file.png -------------------------------------------------------------------------------- /wiki/assets_new/Video_Full_Res/Step1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/Video_Full_Res/Step1.mp4 -------------------------------------------------------------------------------- /wiki/assets_new/Video_Full_Res/Step2_Sub1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/Video_Full_Res/Step2_Sub1.mp4 -------------------------------------------------------------------------------- /wiki/assets_new/Video_Full_Res/Step3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/Video_Full_Res/Step3.mp4 -------------------------------------------------------------------------------- /wiki/assets_new/Video_Full_Res/Step4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/Video_Full_Res/Step4.mp4 -------------------------------------------------------------------------------- /wiki/assets_new/Video_Full_Res/Step6.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/Video_Full_Res/Step6.mp4 -------------------------------------------------------------------------------- /wiki/assets_new/Video_Full_Res/Step7.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/Video_Full_Res/Step7.mp4 -------------------------------------------------------------------------------- /wiki/assets_new/Video_Full_Res/step5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/Video_Full_Res/step5.mp4 -------------------------------------------------------------------------------- /wiki/assets_new/create_n_wrkflw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/create_n_wrkflw.gif -------------------------------------------------------------------------------- /wiki/assets_new/edit_rdm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/edit_rdm.gif -------------------------------------------------------------------------------- /wiki/assets_new/edit_wrkflw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/edit_wrkflw.gif -------------------------------------------------------------------------------- /wiki/assets_new/gen_user_pac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/gen_user_pac.gif -------------------------------------------------------------------------------- /wiki/assets_new/make_n_scrt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/make_n_scrt.gif -------------------------------------------------------------------------------- /wiki/assets_new/make_rep_f_tmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/make_rep_f_tmp.gif -------------------------------------------------------------------------------- /wiki/assets_new/run_wrkflw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/run_wrkflw.gif -------------------------------------------------------------------------------- /wiki/assets_new/special_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards/HEAD/wiki/assets_new/special_repo.png --------------------------------------------------------------------------------