Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4e0e7d0
Fix app workflows
kqito Mar 22, 2025
7a390ed
Fix version of kqito/manage-heroku-review-app temporary
kqito Mar 22, 2025
92f579b
Pin version of kqito/manage-heroku-review-app to specific commit hash
kqito Mar 22, 2025
efd879b
chore: replace bcrypt to bcryptjs.
KazuhiroKobayashi Mar 23, 2025
90590a0
refactor: modify server cache control settings.
KazuhiroKobayashi Mar 23, 2025
8d7e5af
refactor: remove image preloading on initial load.
KazuhiroKobayashi Mar 23, 2025
1b2270d
refactor: replace jpeg images with avif format.
KazuhiroKobayashi Mar 23, 2025
36a4854
refactor: remove lodash.
KazuhiroKobayashi Mar 23, 2025
47762b0
refactor: load images asynchronously.
KazuhiroKobayashi Mar 23, 2025
3e75561
refactor: update webpack configuration.
KazuhiroKobayashi Mar 23, 2025
13ebb26
refactor: remove unnecessary processing when accessing home.
KazuhiroKobayashi Mar 23, 2025
bfb425a
chore: remove polyfill.
KazuhiroKobayashi Mar 23, 2025
87bc12e
refactor: optimize thumbnail generation with caching.
KazuhiroKobayashi Mar 23, 2025
56d79cf
refactor: remove fluent.
KazuhiroKobayashi Mar 23, 2025
ecfcbb5
refactor: standardize video player to hls.
KazuhiroKobayashi Mar 23, 2025
543bd22
refactor: optimize player initialization.
KazuhiroKobayashi Mar 23, 2025
b800977
fix: remove residual shaka-player related files.
KazuhiroKobayashi Mar 23, 2025
9bcef7b
refactor: remove p-min-delay.
KazuhiroKobayashi Mar 23, 2025
b202913
Fix to destory for sync app
kqito Mar 23, 2025
5f9b999
Merge branch 'CyberAgentHack:main' into first
KazuhiroKobayashi Mar 23, 2025
5702f30
refactor: use hover.
KazuhiroKobayashi Mar 23, 2025
6682d1a
refactor: create db indexes.
KazuhiroKobayashi Mar 23, 2025
1712f3b
refactor: remove png loader.
KazuhiroKobayashi Mar 23, 2025
dad664f
refactor: improve query.
KazuhiroKobayashi Mar 23, 2025
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
33 changes: 30 additions & 3 deletions .github/workflows/create_heroku_review_app.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,40 @@
name: Review App
on:
pull_request_target:
types: [opened]
pull_request:
types: [opened, synchronize]

jobs:
create-review-app:
runs-on: ubuntu-latest
steps:
- uses: fastruby/manage-heroku-review-app@9fa49f0320460f278c3687bc348dd0cbb18555dc # v1.3
- name: Get PR Number
id: get_pr_number
run: echo "::set-output name=pr_number::${{ github.event.pull_request.number }}"

- name: Check if PR Number is greater than 140
id: set_step_id
run: |
pr_number=${{ steps.get_pr_number.outputs.pr_number }}
if [ $pr_number -gt 140 ]; then
echo "::set-output name=step_id::true"
else
echo "::set-output name=step_id::false"
fi

- name: Display step_id
run: echo "Step ID is ${{ steps.set_step_id.outputs.step_id }}"

- uses: kqito/manage-heroku-review-app@55e434ad5ac86f21cf2f7654de1566973fbc7046
if: ${{ steps.set_step_id.outputs.step_id == 'true' }}
with:
action: destroy
env:
HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }}
HEROKU_PIPELINE_ID: ${{ secrets.HEROKU_PIPELINE_ID }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- uses: kqito/manage-heroku-review-app@55e434ad5ac86f21cf2f7654de1566973fbc7046
if: ${{ steps.set_step_id.outputs.step_id == 'true' }}
with:
action: create
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/destroy_heroku_review_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
destroy-review-app:
runs-on: ubuntu-latest
steps:
- uses: fastruby/manage-heroku-review-app@9fa49f0320460f278c3687bc348dd0cbb18555dc # v1.3
- uses: kqito/manage-heroku-review-app@55e434ad5ac86f21cf2f7654de1566973fbc7046
with:
action: destroy
env:
Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
"overrides": {
"es-abstract": "~1.23.9",
"m3u8-parser>@babel/runtime": "-"
},
"patchedDependencies": {
"shaka-player": "patches/shaka-player.patch"
}
},
"wireit": {
Expand Down
36 changes: 0 additions & 36 deletions patches/shaka-player.patch

This file was deleted.

Loading
Loading