Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 4 additions & 10 deletions .github/workflows/download-packages-popularity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,12 @@ jobs:
- name: download-packages-popularity
run: npm run download-packages-popularity

## FIX: https://github.com/github-actions-x/commit/issues/16
- name: Expose git commit data
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action

- name: push
uses: github-actions-x/commit@v2.9
uses: EndBug/add-and-commit@v9
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: master
author_name: ${{ env.GIT_COMMIT_AUTHOR_NAME }}
author_email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}
commit-message: 'feat: adds popularity of packages'
rebase: 'true'
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16
push: true
28 changes: 8 additions & 20 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,15 @@ jobs:
- name: generate benchmarks with node
run: ./start.sh NODE

## FIX: https://github.com/github-actions-x/commit/issues/16
- name: Expose git commit data
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action

- name: push
uses: github-actions-x/commit@v2.9
uses: EndBug/add-and-commit@v9
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: master
author_name: ${{ env.GIT_COMMIT_AUTHOR_NAME }}
author_email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}
commit-message: 'feat: ${{ matrix.node-version }} adds auto-generated benchmarks and bar graph'
rebase: 'true'
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16
push: true
build-bun:
name: "Bun ${{ matrix.bun-version }}"

Expand Down Expand Up @@ -121,18 +115,12 @@ jobs:
- name: generate benchmarks with bun
run: ./start.sh BUN

## FIX: https://github.com/github-actions-x/commit/issues/16
- name: Expose git commit data
uses: rlespinasse/git-commit-data-action@v1 ## https://github.com/rlespinasse/git-commit-data-action

- name: push
uses: github-actions-x/commit@v2.9
uses: EndBug/add-and-commit@v9
## prevents forked repos from comitting results in PRs
if: github.repository == 'moltar/typescript-runtime-type-benchmarks'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: master
author_name: ${{ env.GIT_COMMIT_AUTHOR_NAME }}
author_email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }}
commit-message: 'feat: ${{ matrix.bun-version }} adds auto-generated benchmarks and bar graph'
rebase: 'true'
name: ${{ env.GIT_COMMIT_AUTHOR_NAME }} ## FIX: https://github.com/github-actions-x/commit/issues/16
email: ${{ env.GIT_COMMIT_AUTHOR_EMAIL }} ## FIX: https://github.com/github-actions-x/commit/issues/16
push: true
Loading