├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── add-new-action.md └── workflows │ └── lint.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/awesome-rust-actions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-new-action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/awesome-rust-actions/HEAD/.github/ISSUE_TEMPLATE/add-new-action.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/awesome-rust-actions/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/awesome-rust-actions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/awesome-rust-actions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/awesome-rust-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-rs/awesome-rust-actions/HEAD/README.md --------------------------------------------------------------------------------