Skip to content

add 1.6.0 release notes #423

add 1.6.0 release notes

add 1.6.0 release notes #423

Workflow file for this run

name: Check for sensitive data
on:
pull_request:
branches: [dev,dev-*]
push:
branches: [dev,dev-*]
jobs:
detection:
name: automatic-detection
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: 16
- run: |
ipis=`{ grep -rn "[1-9]\{2,3\}\.[0-9]\{2,3\}\.[0-9]\{1,3\}.[0-9]\{1,3\}" * --exclude=custom.scss || true;}`
bdpujesis=`{ grep -rn "bdpujes" * || true;}`
bdpdwsis=`{ grep -rn "bdpdws" * || true;}`
if [[ -n "$ipis" ]];then echo "$ipis"; fi
if [[ -n "$bdpujesis" ]];then echo "$bdpujesis"; fi
if [[ -n "$bdpdwsis" ]];then echo "$bdpdwsis"; fi
if [[ -n "$bdpdwsis" ]] || [[ -n "$ipis" ]] || [[ -n "$bdpujesis" ]];then echo "check error!" && exit 123; else echo "check success"; fi