Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jvalkeal/github-actions-dashboard

Dashboard for Github Actions
https://github.com/jvalkeal/github-actions-dashboard

angular clarity github-actions java spring

Last synced: about 1 month ago
JSON representation

Dashboard for Github Actions

Awesome Lists containing this project

README

        

== Github Actions Dashboard

[NOTE]
====
This project is very much work-in-progress, it may work or not!
====

Custom dashboard application aggregating information from multiple
Github projects and their Actions.

Some notes about purpose and idea of this project:

- It's difficult to know a states of your actions if you have
multiple projects, thus a need to get an aggregated view.
- Potentially we might want to do some calls against actions
via Github api's what you currently can't do via Github's UI.

=== Building

Build:
[source, bash]
----
$ ./gradlew clean build
----

Build and skip all tests:
[source, bash]
----
$ ./gradlew clean build -x test
----

Run:
[source, bash]
----
$ java -jar github-actions-dashboard-server/build/libs/github-actions-dashboard-server-.jar \
--spring.security.oauth2.client.registration.github.client-id= \
--spring.security.oauth2.client.registration.github.client-secret=
----

Open: http://localhost:8080

If you have started to an instance with a demo profile:
[source, bash]
----
$ java -jar github-actions-dashboard-server/build/libs/github-actions-dashboard-server-.jar \
--spring.security.oauth2.client.registration.github.client-id= \
--spring.security.oauth2.client.registration.github.client-secret=
--spring.profiles.active=demo
----
You may see thigs like:

image::docs/images/gh-actions-dashboard-1.png[gh-actions-dashboard-1]

=== Dev

When upgrading a bundled github graphql schema and as we rely on preview api, take it with:

[source, bash]
----
$ curl -H "Authorization: bearer " -H "Accept: application/vnd.github.antiope-preview+json" https://api.github.com/graphql
----