forked from arjun024/actions-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc33b90
commit 83e0add
Showing
11 changed files
with
138 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,3 @@ body: | |
render: markdown | ||
validations: | ||
required: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
name: 'Dependabot auto-merge' | ||
name: "Dependabot auto-merge" | ||
on: pull_request | ||
|
||
permissions: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,55 @@ | ||
# Github Actions dashboard | ||
|
||
This tool generates a dashboard that shows live status of all github action | ||
workflows in a given set of github repositories. | ||
|
||
The [`generate.sh`](./generate.sh) script can read input files that contain | ||
single line records of github repositories, scan all workflows listed in | ||
`.github/workflows` and generate a markdown file that shows the current status | ||
of each workflow. | ||
|
||
### Usage | ||
```sh | ||
generate.sh [-h] -o OUTFILE [-i FILE]... | ||
|
||
-h display this help | ||
-i input file path | ||
-o output markdown file path | ||
``` | ||
|
||
You can provide multiple input files. The input file value can be a local file | ||
path or an http(s) url. | ||
|
||
Input files must have a github repository name per line that follows the syntax | ||
`<user-or-org>/<repo>`. | ||
|
||
Lines beginning with `#` are treated as comments. | ||
|
||
E.g. | ||
```sh | ||
./generate.sh -o samples/gcp.md -i samples/gcp-repos \ | ||
-i https://raw.githubusercontent.com/arjun024/actions-dashboard/master/samples/some-other-gcp-repos | ||
``` | ||
|
||
See [samples](./samples) for sample inputs and [sample output](./samples/gcp.md). | ||
|
||
<img src="https://github.com/arjun024/actions-dashboard/blob/master/samples/sample.png?raw=true" width="550"> | ||
|
||
|
||
### Auto-regenerate | ||
|
||
You can use a [github-workflow like | ||
this](.github/workflows/check-for-workflows.yml) that runs the generate script | ||
every day to see if any workflow files have been added/removed from the repos | ||
listed in the input files. | ||
|
||
### How to use | ||
|
||
* Fork this repository | ||
* Edit the sample input to list your repositories or create an input file or | ||
point to to your list of repos elsewhere | ||
* Run the generate script with the required options | ||
* Edit | ||
[`.github/workflows/check-for-workflows.yml`](.github/workflows/check-for-workflows.yml) | ||
to run `generate.sh` with your command options in the `Generate` step. | ||
# Github Actions dashboard | ||
|
||
This tool generates a dashboard that shows live status of all github action | ||
workflows in a given set of github repositories. | ||
|
||
The [`generate.sh`](./generate.sh) script can read input files that contain | ||
single line records of github repositories, scan all workflows listed in | ||
`.github/workflows` and generate a markdown file that shows the current status | ||
of each workflow. | ||
|
||
### Usage | ||
|
||
```sh | ||
generate.sh [-h] -o OUTFILE [-i FILE]... | ||
|
||
-h display this help | ||
-i input file path | ||
-o output markdown file path | ||
``` | ||
|
||
You can provide multiple input files. The input file value can be a local file | ||
path or an http(s) url. | ||
|
||
Input files must have a github repository name per line that follows the syntax | ||
`<user-or-org>/<repo>`. | ||
|
||
Lines beginning with `#` are treated as comments. | ||
|
||
E.g. | ||
|
||
```sh | ||
./generate.sh -o samples/gcp.md -i samples/gcp-repos \ | ||
-i https://raw.githubusercontent.com/arjun024/actions-dashboard/master/samples/some-other-gcp-repos | ||
``` | ||
|
||
See [samples](./samples) for sample inputs and [sample output](./samples/gcp.md). | ||
|
||
<img src="https://github.com/arjun024/actions-dashboard/blob/master/samples/sample.png?raw=true" width="550"> | ||
|
||
### Auto-regenerate | ||
|
||
You can use a [github-workflow like | ||
this](.github/workflows/check-for-workflows.yml) that runs the generate script | ||
every day to see if any workflow files have been added/removed from the repos | ||
listed in the input files. | ||
|
||
### How to use | ||
|
||
- Fork this repository | ||
- Edit the sample input to list your repositories or create an input file or | ||
point to to your list of repos elsewhere | ||
- Run the generate script with the required options | ||
- Edit | ||
[`.github/workflows/check-for-workflows.yml`](.github/workflows/check-for-workflows.yml) | ||
to run `generate.sh` with your command options in the `Generate` step. |
Oops, something went wrong.