mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
6 lines
331 B
Bash
Executable file
6 lines
331 B
Bash
Executable file
#!/usr/bin/env bash
|
|
find resource_customizations -name action.lua \
|
|
| sed 's~resource_customizations/\(.*\)/actions/\(.*\)/action.lua~- [\1/\2](https://github.com/argoproj/argo-cd/blob/master/resource_customizations/\1/actions/\2/action.lua)~' \
|
|
| sort \
|
|
| uniq \
|
|
> docs/operator-manual/resource_actions_builtin.md
|