mirror of
https://github.com/actions/actions-runner-controller.git
synced 2025-12-11 12:06:57 +00:00
13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
# shellcheck source=runner/logger.sh
|
|
source logger.sh
|
|
|
|
log.debug "Running ARC Job Completed Hooks"
|
|
|
|
for hook in /etc/arc/hooks/job-completed.d/*; do
|
|
log.debug "Running hook: $hook"
|
|
"$hook" "$@"
|
|
done
|