|
| 1 | +# action-user-count: Reports count of repositories using a GitHub action as Shields.io endpoint |
| 2 | +# |
| 3 | +# Copyright (c) 2021 Vincent A Cicirello |
| 4 | +# https://www.cicirello.org/ |
| 5 | +# |
| 6 | +# MIT License |
| 7 | +# |
| 8 | +# Permission is hereby granted, free of charge, to any person obtaining a copy |
| 9 | +# of this software and associated documentation files (the "Software"), to deal |
| 10 | +# in the Software without restriction, including without limitation the rights |
| 11 | +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 12 | +# copies of the Software, and to permit persons to whom the Software is |
| 13 | +# furnished to do so, subject to the following conditions: |
| 14 | +# |
| 15 | +# The above copyright notice and this permission notice shall be included in all |
| 16 | +# copies or substantial portions of the Software. |
| 17 | +# |
| 18 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 19 | +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 20 | +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 21 | +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 22 | +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 23 | +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 24 | +# SOFTWARE. |
| 25 | +# |
| 26 | +name: 'action-user-count' |
| 27 | +description: 'Reports count of repositories using a GitHub action as a Shields.io endpoint' |
| 28 | +branding: |
| 29 | + icon: 'book-open' |
| 30 | + color: 'green' |
| 31 | +inputs: |
| 32 | + action-list: |
| 33 | + description: 'Comma or space separated list of GitHub Actions' |
| 34 | + required: true |
| 35 | + target-directory: |
| 36 | + description: 'Target directory relative to repository root where the endpoints should be stored' |
| 37 | + required: false |
| 38 | + default: '' # Default of empty string defaults to root |
| 39 | + fail-on-error: |
| 40 | + description: 'Choose whether to fail the workflow if there is an error' |
| 41 | + required: false |
| 42 | + default: true |
| 43 | + commit-and-push: |
| 44 | + description: 'Commits and pushes the generated endpoints' |
| 45 | + required: false |
| 46 | + default: true |
| 47 | + color: |
| 48 | + description: 'The color for the right side of the badge' |
| 49 | + required: false |
| 50 | + default: '#4c1' # A bright shade of green |
| 51 | + include-logo: |
| 52 | + description: 'If true will include a named logo on the left' |
| 53 | + required: false |
| 54 | + default: true |
| 55 | + named-logo: |
| 56 | + description: 'The name of a logo supported by shields or simple-icons' |
| 57 | + required: false |
| 58 | + default: actions # Defaults to the GitHub Actions logo |
| 59 | + style: |
| 60 | + description: 'One of the styles supported by Shields.io.' |
| 61 | + required: false |
| 62 | + default: flat # This is Shield's default style |
| 63 | +outputs: |
| 64 | + exit-code: |
| 65 | + description: '0 if successful or non-zero if unsuccessful' |
| 66 | +runs: |
| 67 | + using: 'docker' |
| 68 | + image: 'Dockerfile' |
| 69 | + args: |
| 70 | + - ${{ inputs.action-list }} |
| 71 | + - ${{ inputs.target-directory }} |
| 72 | + - ${{ inputs.fail-on-error }} |
| 73 | + - ${{ inputs.commit-and-push }} |
| 74 | + - ${{ inputs.color }} |
| 75 | + - ${{ inputs.include-logo }} |
| 76 | + - ${{ inputs.named-logo }} |
| 77 | + - ${{ inputs.style }} |
0 commit comments