ylemkimon
ylemkimon
How about checking current working directory is TRAVIS_BUILD_DIR?
@asmeurer I thought this was for #274. I think checking current working directory is `TRAVIS_BUILD_DIR` may address that issue.
The integrity field was added in https://github.com/yarnpkg/yarn/pull/5042 released in v1.10.0, but since they realized it may be a breaking change, it was disabled for existing entries in https://github.com/yarnpkg/yarn/pull/6465.
So the best approach for Greenkeeper seems to be upgrading to 1.12.1, and then it will not add integrity fields to existing lockfiles but update those with integrity fields.
**tl;dr, change** ```yaml on: - pull_request ``` **to** ```yaml on: - pull_request_target ``` --- GitHub [has introduced](https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/) a new event type: `pull_request_target`, which allows to run workflows from base branch...
**tl;dr, change** ```yaml on: - pull_request ``` **to** ```yaml on: - pull_request_target ``` --- GitHub [has introduced](https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/) a new event type: `pull_request_target`, which allows to run workflows from base branch...
@abu-hasib see https://github.com/actions/first-interaction/issues/10#issuecomment-670968624.
@BrainStone Check out https://github.com/actions/first-interaction/issues/10#issuecomment-670968624.
The workaround for packages not being cached is setting the environment variable `YARN_GLOBAL_FOLDER` to `/opt/buildhome/.yarn_cache` and `YARN_ENABLE_GLOBAL_CACHE=1` in Netlify settings. Note this depends on the _undocumented_ path in https://github.com/netlify/build-image/blob/5159a4be00a042d42ec5f03647f823057e943bbc/run-build-functions.sh#L10 https://github.com/netlify/build-image/blob/5159a4be00a042d42ec5f03647f823057e943bbc/run-build-functions.sh#L113...
@ai Yes, I would like to send a PR. One question is should I implement this as a query or an option? The former seems to be backward compatible but...