some times your deployment might be blocked by a audit scan that shows a security alarm for a package that does not have a patch yet. in these instances you probably would like to deploy and wait for patch to become available.
the following command can let you bypass the audit step for a specific PR but still allow you to be warned of the issue for the next change.
you simply have to make your last commit as skip audit
.
"audit": "yarn audit --level high --groups dependencies; if [ \"$?\" -ge 8 ] && [ -z $(git log --format=%B -n 1|grep \"skip audit\") ]; then exit 1; else exit 0; fi;",