commit 2ce31d67100095db13a97cf1591a7290b6317eef Author: Julien Lengrand-Lambert Date: Wed Jan 20 16:05:04 2021 +0100 Creates dummy repository diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c0a9614 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM node:14-alpine +COPY entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e1dd696 --- /dev/null +++ b/LICENSE @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright (c) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..4b302b9 --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# Check HTML Links Github Action + +This action checks whether there are any dead links in the documentation of your repository. +Based of [check-html-links](https://www.npmjs.com/package/check-html-links) from [Modern Web](https://modern-web.dev/). + +## Inputs + +### `who-to-greet` + +**Required** The name of the person to greet. Default `"World"`. + +## Outputs + +### `time` + +The time we greeted you. + +## Example usage + +uses: actions/hello-world-docker-action@v1 +with: + who-to-greet: 'Mona the Octocat' + +# LICENSE + +[MIT](https://tldrlegal.com/license/mit-license) + +# Author + +[Julien Lengrand-Lambert](https://twitter.com/jlengrand) + diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..581e0d8 --- /dev/null +++ b/action.yml @@ -0,0 +1,15 @@ +name: 'Check HTML Links action' +description: 'A simple way to check for dead links in the documentation of your repository' +inputs: + who-to-greet: # id of input + description: 'Who to greet' + required: true + default: 'World' +outputs: + time: # id of output + description: 'The time we greeted you' +runs: + using: 'docker' + image: 'Dockerfile' + args: + - ${{ inputs.who-to-greet }} \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100755 index 0000000..e33ed46 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,5 @@ +#!/bin/sh -l + +echo "Hello $1" +time=$(date) +echo "::set-output name=time::$time" \ No newline at end of file