We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0818282 commit ef79abaCopy full SHA for ef79aba
1 file changed
.github/actions/detect-secrets/action.yaml
@@ -77,9 +77,10 @@ runs:
77
run: bash -c "$(curl --silent https://raw.githubusercontent.com/thoughtworks/talisman/main/install.sh)"
78
79
- name: Run Talisman
80
+ continue-on-error: true
81
shell: bash
82
run: |
- talisman --scan
83
+ talisman --scan || true
84
if [ -f talisman_report/talisman_reports/data/report.json ]; then
85
report=$(cat talisman_report/talisman_reports/data/report.json)
86
num_failures=$(echo "$report" | jq '.failures // [] | length')
0 commit comments