From 5a95cb67720ead7284144e475ebb886ec2b1d8d8 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Fri, 5 Nov 2021 08:37:04 -0700 Subject: [PATCH 1/3] editorconfig: init --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ae447db --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +indent_style = space + +[*.{yml,yaml}] +indent_size = 2 From 1aae24f313e8077b43217103f37caade97aa9744 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Fri, 5 Nov 2021 08:45:47 -0700 Subject: [PATCH 2/3] README: add contributing and testing sections --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index dadba0f..fda4674 100644 --- a/README.md +++ b/README.md @@ -45,3 +45,10 @@ git commit --amend --no-edit git push origin update_flake_lock_action --force ``` +## Contributing + +Feel free to send a PR or open an issue if you find something functions unexpectedly! Please make sure to test your changes and update any related documentation before submitting your PR. + +### How to test changes + +In order to more easily test your changes to this action, we have created a template repository that should point you in the right direction: https://github.com/DeterminateSystems/update-flake-lock-test-template. Please see the README in that repository for instructions on testing your changes. From d384d02476120e4c00b6959fa2152addba098cfd Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Fri, 5 Nov 2021 08:49:38 -0700 Subject: [PATCH 3/3] PULL_REQUEST_TEMPLATE: init --- .github/PULL_REQUEST_TEMPLATE.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..1137db1 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,11 @@ +##### Description + + + +##### Checklist + +- [ ] Tested functionality against a test repository (see ["How to test changes"](../README.md#how-to-test-changes)) +- [ ] Added or updated relevant documentation (leave unchecked if not applicable)