Skip to content

Commit 80c0ca1

Browse files
committed
initial commit
1 parent 3ddc26a commit 80c0ca1

File tree

5 files changed

+114
-0
lines changed

5 files changed

+114
-0
lines changed

.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!Dockerfile
3+
!ActionUserCounter.py

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__pycache__/
2+
tests/__pycache__/
3+
*.pyc

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased] - YYYY-MM-DD
8+
9+
### Added
10+
11+
### Changed
12+
13+
### Deprecated
14+
15+
### Removed
16+
17+
### Fixed
18+
19+
20+
## [1.0.0] - YYYY-MM-DD
21+
22+
### Added
23+
* This is the initial release.

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright (c) 2021 Vincent A. Cicirello
2+
# https://www.cicirello.org/
3+
# Licensed under the MIT License
4+
5+
FROM ghcr.io/cicirello/pyaction:4
6+
7+
COPY ActionUserCounter.py /ActionUserCounter.py
8+
ENTRYPOINT ["ActionUserCounter.py"]

action.yml

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
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

Comments
 (0)