diff --git a/README.md b/README.md index aabe563..ef5121d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ runs clang-format on the diff of the most recent commit +Fixed version of purduesigbots/clang-format-action + # usage ```yml @@ -47,4 +49,3 @@ there are already a couple versions of this action floating around ([cvra/clang- - or have some sketchy docker files so for maximum ease of use we are providing a more robust action here - diff --git a/action.yml b/action.yml index c82d494..074cbea 100644 --- a/action.yml +++ b/action.yml @@ -1,15 +1,15 @@ -name: 'clang-format action' -description: 'run clang-format on your code' -author: 'purduesigbots' +name: "git-clang-format action" +description: "run clang-format on your code" +author: "kevmo314" branding: icon: align-center color: yellow -inputs: +inputs: style: - description: 'style passed to clang-format. reads .clang-format file in the repo by default. see clang-format docs for more.' - default: 'file' + description: "style passed to clang-format. reads .clang-format file in the repo by default. see clang-format docs for more." + default: "file" runs: - using: 'docker' - image: 'Dockerfile' + using: "docker" + image: "Dockerfile" args: - ${{ inputs.style }}