Skip to content

Commit df9a8c8

Browse files
authored
Merge pull request #168 from PrestaShop/develop
Release 2025-07-02 (4)
2 parents d7d1d25 + 82b38d9 commit df9a8c8

File tree

3 files changed

+524
-1840
lines changed

3 files changed

+524
-1840
lines changed

.github/workflows/gh-pages.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,28 @@ jobs:
7070
working-directory: ./traces
7171
run: php bin/console traces:fetch:contributors --ghtoken=${ENV_USER_PASS} --config="./config.dist.yml"
7272

73-
- name: Move file 📁
73+
- name: Execute `traces:fetch:pullrequests:merged` 🔧
74+
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
75+
working-directory: ./traces
76+
run: php bin/console traces:fetch:pullrequests:merged --ghtoken=${ENV_USER_PASS}
77+
78+
- name: Execute `traces:generate:topcompanies` 🔧
79+
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
80+
working-directory: ./traces
81+
run: php bin/console traces:generate:topcompanies --ghtoken=${ENV_USER_PASS}
82+
83+
- name: Display Contributors without Companies 🔎
84+
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
85+
run: cat ./traces/gh_loginsWOCompany.json
86+
87+
- name: Move file (TopContributors) 📁
7488
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
7589
run: mv ./traces/contributors.js ./dist
7690

91+
- name: Move file (TopCompanies) 📁
92+
if: ${{ github.event_name == 'release' || github.event_name == 'schedule' }}
93+
run: mv ./traces/topcompanies.json ./dist
94+
7795
- name: Write CNAME file
7896
run: echo 'contributors.prestashop-project.org' > ./dist/CNAME
7997

components/Category.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</a>
1212
<a
1313
v-if="type === 'repository'"
14-
:href="`https://github.com/${text}/commits?author=${contributor.login}`"
14+
:href="`https://github.com/PrestaShop/${text}/commits?author=${contributor.login}`"
1515
target="_blank"
1616
class="contributions-item repository"
1717
>

0 commit comments

Comments
 (0)