Updated Hashnode OAuth and .yml syntax
Overview
- In
.github/workflows/commit-blog-generator.yml
,GITHUB_ACCESS_TOKEN
inenv
section was updated. - In
js/math/utils.js
, there was a minor change ingetNearestPoint
function.
File wise changes made
.github/workflows/commit-blog-generator.yml
GITHUB_ACCESS_TOKEN
replaced with${{ secrets.GITHUB_TOKEN }}
js/math/utils.js
y: lerp(A.y, B.y, t);
replaced withy: lerp(A.y, B.y, t),
Summary
- In
.github/workflows/commit-blog-generator.yml
, the secretGITHUB_ACCESS_TOKEN
is now set usingsecrets.GITHUB_TOKEN
instead ofsecrets.GITHUB_TOKEN
. - In
js/math/utils.js
, there was a change in thegetNearestPoint
function.- In the calculation of
y
, a comma was added at the end of the liney: lerp(A.y, B.y, t)
.
- In the calculation of