Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 Tasks

on:
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]
```