├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── release.yml │ └── shellcheck.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml └── delete-old-branches /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/shellcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/.github/workflows/shellcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Misc 2 | .idea/ -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/action.yml -------------------------------------------------------------------------------- /delete-old-branches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatlabs/delete-old-branches-action/HEAD/delete-old-branches --------------------------------------------------------------------------------