https://github.com/michinaoshimizu/workflow-time-report
Github Actions that outputs the aggregated results related to Billable Time of all workflows executed by the repository to ISSUE and JobSummary during the current month.
https://github.com/michinaoshimizu/workflow-time-report
actions
Last synced: 3 months ago
JSON representation
Github Actions that outputs the aggregated results related to Billable Time of all workflows executed by the repository to ISSUE and JobSummary during the current month.
- Host: GitHub
- URL: https://github.com/michinaoshimizu/workflow-time-report
- Owner: MichinaoShimizu
- Created: 2022-07-09T10:56:48.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-13T13:19:47.000Z (over 1 year ago)
- Last Synced: 2024-10-14T09:44:13.089Z (8 months ago)
- Topics: actions
- Language: Shell
- Homepage:
- Size: 347 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Workflow Time Report
[](https://github.com/MichinaoShimizu/workflow-time-report/actions/workflows/test.yml)
Github Actions that outputs the aggregated results related to Billable Time of all workflows executed by the repository to ISSUE and JobSummary during the current month.

## Usage
```yaml
uses: MichinaoShimizu/[email protected]
```## Example
```yaml
name: Weekly Report Taskson:
schedule:
- cron: '0 1 * * 1'workflow_dispatch:
jobs:
reporting:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: MichinaoShimizu/[email protected]
```