-
Notifications
You must be signed in to change notification settings - Fork 1
/
entrypoint.sh
35 lines (34 loc) · 1014 Bytes
/
entrypoint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash
set -e
# Unsafe decision to fix https://github.com/actions/runner/issues/2033
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git config --global user.email "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
git config --global user.name "github-actions[bot]"
if [[ "$INPUT_VERBOSE" == true ]]; then
echo "Running local_dependency.sh"
fi
chmod +x /local_dependency.sh
/local_dependency.sh
if [[ "$INPUT_VERBOSE" == true ]]; then
echo "Running scanner.sh"
fi
chmod +x /scanner.sh
/scanner.sh project.clj
/scanner.sh deps.edn
if [[ "$INPUT_VERBOSE" == true ]]; then
echo "Running dependabot_alerts.sh"
fi
chmod +x /dependabot_alerts.sh
/dependabot_alerts.sh
if [[ "$INPUT_VERBOSE" == true ]]; then
echo "Running alerts_summary.sh"
fi
chmod +x /alerts_summary.sh
/alerts_summary.sh project.clj
/alerts_summary.sh deps.edn
if [[ "$INPUT_VERBOSE" == true ]]; then
echo "Running antq.sh"
fi
chmod +x /antq.sh
/antq.sh project.clj
/antq.sh deps.edn