mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
7 lines
331 B
Bash
Executable File
7 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
|