Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 22 days 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-13T13:19:47.000Z (9 months ago)
- Last Synced: 2024-10-14T09:44:13.089Z (about 1 month 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
[![Test](https://github.com/MichinaoShimizu/workflow-time-report/actions/workflows/test.yml/badge.svg)](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.
![image.png](image.png)
## 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]
```