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