├── .editorconfig ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── flow--merge-request.yml │ ├── flow--new-master.yml │ ├── flow--new-version.yml │ ├── job--build-and-tag-container.yml │ ├── job--build-containers.yml │ └── job--test-and-lint.yml ├── .gitignore ├── .husky └── pre-commit ├── .parcelrc ├── .prettierrc ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── Taskfile ├── backend ├── api │ ├── github.ts │ └── github │ │ ├── contributors.ts │ │ └── release.ts ├── module-client.ts ├── module │ ├── manager.ts │ ├── type.ts │ └── type │ │ ├── gpio.ts │ │ └── http.ts ├── parser │ ├── bitbucket │ │ ├── build.ts │ │ ├── index.ts │ │ ├── pull-request.ts │ │ └── push.ts │ ├── firebase.ts │ ├── github │ │ ├── helper.ts │ │ ├── index.ts │ │ ├── job.ts │ │ ├── pull-request.ts │ │ ├── push.ts │ │ └── run.ts │ ├── gitlab │ │ ├── build.ts │ │ ├── deployment.ts │ │ ├── helper.ts │ │ ├── index.ts │ │ ├── merge-request.ts │ │ └── pipeline.ts │ ├── readthedocs.ts │ └── slug.ts ├── router │ ├── index.ts │ └── route │ │ ├── changelog.ts │ │ ├── contributors.ts │ │ ├── dashboard.ts │ │ ├── status.ts │ │ ├── version.ts │ │ ├── webhook.ts │ │ └── webhook │ │ ├── bitbucket.ts │ │ ├── github.ts │ │ ├── gitlab.ts │ │ └── readthedocs.ts ├── server.ts ├── socket │ ├── client.ts │ └── manager.ts ├── status │ ├── events.ts │ ├── helper.ts │ └── manager.ts ├── storage │ ├── manager.ts │ ├── type.ts │ └── type │ │ ├── firebase.ts │ │ └── json.ts └── tsconfig.json ├── cypress.json ├── cypress ├── fixtures │ ├── bitbucket │ │ └── push │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ └── 6.json │ ├── github │ │ ├── pull-request │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ ├── push-failed │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ ├── push │ │ │ ├── organisation │ │ │ │ ├── 1.json │ │ │ │ ├── 10.json │ │ │ │ ├── 11.json │ │ │ │ ├── 12.json │ │ │ │ ├── 13.json │ │ │ │ ├── 14.json │ │ │ │ ├── 15.json │ │ │ │ ├── 16.json │ │ │ │ ├── 17.json │ │ │ │ ├── 18.json │ │ │ │ ├── 19.json │ │ │ │ ├── 2.json │ │ │ │ ├── 20.json │ │ │ │ ├── 21.json │ │ │ │ ├── 22.json │ │ │ │ ├── 23.json │ │ │ │ ├── 24.json │ │ │ │ ├── 25.json │ │ │ │ ├── 26.json │ │ │ │ ├── 27.json │ │ │ │ ├── 28.json │ │ │ │ ├── 29.json │ │ │ │ ├── 3.json │ │ │ │ ├── 30.json │ │ │ │ ├── 31.json │ │ │ │ ├── 32.json │ │ │ │ ├── 33.json │ │ │ │ ├── 34.json │ │ │ │ ├── 35.json │ │ │ │ ├── 36.json │ │ │ │ ├── 37.json │ │ │ │ ├── 38.json │ │ │ │ ├── 39.json │ │ │ │ ├── 4.json │ │ │ │ ├── 40.json │ │ │ │ ├── 41.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ └── 9.json │ │ │ └── personal-account │ │ │ │ ├── 1.json │ │ │ │ ├── 10.json │ │ │ │ ├── 11.json │ │ │ │ ├── 12.json │ │ │ │ ├── 13.json │ │ │ │ ├── 14.json │ │ │ │ ├── 15.json │ │ │ │ ├── 16.json │ │ │ │ ├── 17.json │ │ │ │ ├── 18.json │ │ │ │ ├── 19.json │ │ │ │ ├── 2.json │ │ │ │ ├── 20.json │ │ │ │ ├── 21.json │ │ │ │ ├── 22.json │ │ │ │ ├── 23.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ └── 9.json │ │ └── release │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ ├── gitlab │ │ ├── branch-with-mr │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 5.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 6.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 7.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 72.json │ │ │ ├── 73.json │ │ │ ├── 74.json │ │ │ ├── 75.json │ │ │ ├── 76.json │ │ │ ├── 77.json │ │ │ ├── 78.json │ │ │ ├── 79.json │ │ │ ├── 8.json │ │ │ ├── 80.json │ │ │ └── 9.json │ │ ├── canceled-pipeline │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ ├── deployment │ │ │ ├── 1.json │ │ │ └── 2.json │ │ └── pipeline │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 5.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ └── readthedocs │ │ ├── build-failed │ │ ├── 1.json │ │ └── 2.json │ │ └── build-success │ │ ├── 1.json │ │ └── 2.json ├── integration │ ├── a-cleanup.spec.js │ ├── bitbucket │ │ └── push.spec.js │ ├── github │ │ ├── pull-request.spec.js │ │ ├── push.spec.js │ │ └── release.spec.js │ ├── gitlab │ │ ├── branch-with-mr.spec.js │ │ ├── canceled-pipeline.spec.js │ │ ├── deployment.spec.js │ │ └── pipeline.spec.js │ └── readthedocs │ │ └── build.spec.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── docker-compose.yml ├── docker ├── module-client │ ├── .dockerignore │ └── Dockerfile └── server │ ├── .dockerignore │ └── Dockerfile ├── docs ├── config │ ├── environment.md │ ├── firebase.md │ └── query-parameters.md ├── getting-started.md ├── images │ ├── dashboard.gif │ ├── status │ │ ├── bitbucket.png │ │ ├── github.png │ │ ├── gitlab.png │ │ └── readthedocs.gif │ └── webhook │ │ ├── github.gif │ │ ├── gitlab.gif │ │ └── readthedocs.png ├── index.md ├── module-client.md ├── module │ └── gpio.md ├── modules.md ├── run │ ├── docker.md │ ├── kubernetes.md │ ├── locally.md │ └── raspberry-arm.md ├── style.css └── webhook │ ├── bitbucket.md │ ├── github.md │ ├── gitlab.md │ └── readthedocs.md ├── frontend ├── App │ ├── App.tsx │ ├── AppContext.ts │ ├── Favicon │ │ ├── Favicon.tsx │ │ ├── icon │ │ │ ├── error.png │ │ │ ├── success.png │ │ │ └── warning.png │ │ └── index.tsx │ ├── SettingsPanel │ │ ├── About │ │ │ ├── About.tsx │ │ │ ├── Contributors │ │ │ │ ├── Contributors.style.tsx │ │ │ │ ├── Contributors.tsx │ │ │ │ └── index.tsx │ │ │ ├── Version │ │ │ │ ├── Version.tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Changelog │ │ │ ├── Changelog.style.tsx │ │ │ ├── Changelog.tsx │ │ │ └── index.tsx │ │ ├── Customization │ │ │ ├── Customization.style.tsx │ │ │ ├── Customization.tsx │ │ │ └── index.tsx │ │ ├── Documentation │ │ │ ├── Documentation.style.tsx │ │ │ ├── Documentation.tsx │ │ │ └── index.tsx │ │ ├── SettingsPanel.style.tsx │ │ ├── SettingsPanel.tsx │ │ ├── Statuses │ │ │ ├── Statuses.style.tsx │ │ │ ├── Statuses.tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── SocketConnection │ │ ├── SocketConnection.style.tsx │ │ ├── SocketConnection.tsx │ │ └── index.tsx │ ├── Statuses │ │ ├── Mock │ │ │ ├── Mock.style.tsx │ │ │ ├── Mock.tsx │ │ │ └── index.tsx │ │ ├── Status │ │ │ ├── Merge │ │ │ │ ├── Merge.tsx │ │ │ │ └── index.tsx │ │ │ ├── Process │ │ │ │ ├── Process.style.tsx │ │ │ │ ├── Process.tsx │ │ │ │ └── index.tsx │ │ │ ├── RunTime.tsx │ │ │ ├── Source │ │ │ │ ├── Source.tsx │ │ │ │ ├── icon │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ └── readthedocs.svg │ │ │ │ └── index.tsx │ │ │ ├── Status.style.tsx │ │ │ ├── Status.tsx │ │ │ ├── TimePassed │ │ │ │ ├── TimePassed.tsx │ │ │ │ └── index.tsx │ │ │ ├── User │ │ │ │ ├── User.tsx │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── Statuses.style.tsx │ │ ├── Statuses.tsx │ │ └── index.tsx │ ├── Toolbar │ │ ├── Toolbar.style.tsx │ │ ├── Toolbar.tsx │ │ ├── github.svg │ │ ├── index.tsx │ │ └── light │ │ │ ├── error.svg │ │ │ ├── success.svg │ │ │ └── warning.svg │ └── index.tsx ├── api │ ├── cimonitor.ts │ └── cimonitor │ │ └── status.ts ├── components │ ├── Alert │ │ ├── Alert.style.tsx │ │ ├── Alert.tsx │ │ └── index.tsx │ ├── Icon │ │ ├── Icon.tsx │ │ └── index.tsx │ ├── Modifier │ │ ├── Modifier.style.tsx │ │ ├── Modifier.tsx │ │ └── index.tsx │ └── Toggle │ │ ├── Toggle.style.tsx │ │ ├── Toggle.tsx │ │ └── index.tsx ├── dashboard.tsx ├── fonts │ ├── fredoka.ttf │ └── material-icons-round.otf ├── globals.css ├── hooks │ ├── useSetting.ts │ └── useSocket.ts ├── index.html ├── meta │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ └── logo.png ├── site.webmanifest ├── sounds │ ├── README.md │ ├── Sounds.ts │ ├── error.mp3 │ ├── info.mp3 │ └── success.mp3 ├── store │ ├── cache │ │ ├── actions.ts │ │ ├── fetch.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── index.ts │ ├── settings │ │ ├── actions.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ ├── status │ │ ├── actions.ts │ │ ├── reducer.ts │ │ ├── selectors.ts │ │ └── types.ts │ └── store.ts ├── style │ ├── colors.ts │ ├── size.ts │ └── text.ts └── tsconfig.json ├── lint-staged.config.js ├── local.env ├── mkdocs.yml ├── package.json ├── types ├── bitbucket.ts ├── cimonitor.ts ├── github.ts ├── gitlab.ts ├── index.d.ts ├── module.ts ├── readthedocs.ts └── status.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [FuturePortal, rick-nu] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/flow--merge-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/workflows/flow--merge-request.yml -------------------------------------------------------------------------------- /.github/workflows/flow--new-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/workflows/flow--new-master.yml -------------------------------------------------------------------------------- /.github/workflows/flow--new-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/workflows/flow--new-version.yml -------------------------------------------------------------------------------- /.github/workflows/job--build-and-tag-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/workflows/job--build-and-tag-container.yml -------------------------------------------------------------------------------- /.github/workflows/job--build-containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/workflows/job--build-containers.yml -------------------------------------------------------------------------------- /.github/workflows/job--test-and-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.github/workflows/job--test-and-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | ./Taskfile commit 5 | -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.parcelrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.prettierrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/Taskfile -------------------------------------------------------------------------------- /backend/api/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/api/github.ts -------------------------------------------------------------------------------- /backend/api/github/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/api/github/contributors.ts -------------------------------------------------------------------------------- /backend/api/github/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/api/github/release.ts -------------------------------------------------------------------------------- /backend/module-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/module-client.ts -------------------------------------------------------------------------------- /backend/module/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/module/manager.ts -------------------------------------------------------------------------------- /backend/module/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/module/type.ts -------------------------------------------------------------------------------- /backend/module/type/gpio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/module/type/gpio.ts -------------------------------------------------------------------------------- /backend/module/type/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/module/type/http.ts -------------------------------------------------------------------------------- /backend/parser/bitbucket/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/bitbucket/build.ts -------------------------------------------------------------------------------- /backend/parser/bitbucket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/bitbucket/index.ts -------------------------------------------------------------------------------- /backend/parser/bitbucket/pull-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/bitbucket/pull-request.ts -------------------------------------------------------------------------------- /backend/parser/bitbucket/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/bitbucket/push.ts -------------------------------------------------------------------------------- /backend/parser/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/firebase.ts -------------------------------------------------------------------------------- /backend/parser/github/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/github/helper.ts -------------------------------------------------------------------------------- /backend/parser/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/github/index.ts -------------------------------------------------------------------------------- /backend/parser/github/job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/github/job.ts -------------------------------------------------------------------------------- /backend/parser/github/pull-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/github/pull-request.ts -------------------------------------------------------------------------------- /backend/parser/github/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/github/push.ts -------------------------------------------------------------------------------- /backend/parser/github/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/github/run.ts -------------------------------------------------------------------------------- /backend/parser/gitlab/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/gitlab/build.ts -------------------------------------------------------------------------------- /backend/parser/gitlab/deployment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/gitlab/deployment.ts -------------------------------------------------------------------------------- /backend/parser/gitlab/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/gitlab/helper.ts -------------------------------------------------------------------------------- /backend/parser/gitlab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/gitlab/index.ts -------------------------------------------------------------------------------- /backend/parser/gitlab/merge-request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/gitlab/merge-request.ts -------------------------------------------------------------------------------- /backend/parser/gitlab/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/gitlab/pipeline.ts -------------------------------------------------------------------------------- /backend/parser/readthedocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/readthedocs.ts -------------------------------------------------------------------------------- /backend/parser/slug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/parser/slug.ts -------------------------------------------------------------------------------- /backend/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/index.ts -------------------------------------------------------------------------------- /backend/router/route/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/changelog.ts -------------------------------------------------------------------------------- /backend/router/route/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/contributors.ts -------------------------------------------------------------------------------- /backend/router/route/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/dashboard.ts -------------------------------------------------------------------------------- /backend/router/route/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/status.ts -------------------------------------------------------------------------------- /backend/router/route/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/version.ts -------------------------------------------------------------------------------- /backend/router/route/webhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/webhook.ts -------------------------------------------------------------------------------- /backend/router/route/webhook/bitbucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/webhook/bitbucket.ts -------------------------------------------------------------------------------- /backend/router/route/webhook/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/webhook/github.ts -------------------------------------------------------------------------------- /backend/router/route/webhook/gitlab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/webhook/gitlab.ts -------------------------------------------------------------------------------- /backend/router/route/webhook/readthedocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/router/route/webhook/readthedocs.ts -------------------------------------------------------------------------------- /backend/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/server.ts -------------------------------------------------------------------------------- /backend/socket/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/socket/client.ts -------------------------------------------------------------------------------- /backend/socket/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/socket/manager.ts -------------------------------------------------------------------------------- /backend/status/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/status/events.ts -------------------------------------------------------------------------------- /backend/status/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/status/helper.ts -------------------------------------------------------------------------------- /backend/status/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/status/manager.ts -------------------------------------------------------------------------------- /backend/storage/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/storage/manager.ts -------------------------------------------------------------------------------- /backend/storage/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/storage/type.ts -------------------------------------------------------------------------------- /backend/storage/type/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/storage/type/firebase.ts -------------------------------------------------------------------------------- /backend/storage/type/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/storage/type/json.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:3030", 3 | "video": false 4 | } 5 | -------------------------------------------------------------------------------- /cypress/fixtures/bitbucket/push/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/bitbucket/push/1.json -------------------------------------------------------------------------------- /cypress/fixtures/bitbucket/push/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/bitbucket/push/2.json -------------------------------------------------------------------------------- /cypress/fixtures/bitbucket/push/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/bitbucket/push/3.json -------------------------------------------------------------------------------- /cypress/fixtures/bitbucket/push/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/bitbucket/push/4.json -------------------------------------------------------------------------------- /cypress/fixtures/bitbucket/push/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/bitbucket/push/5.json -------------------------------------------------------------------------------- /cypress/fixtures/bitbucket/push/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/bitbucket/push/6.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/1.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/10.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/11.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/12.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/13.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/14.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/15.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/16.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/17.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/18.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/19.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/2.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/20.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/21.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/22.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/23.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/3.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/4.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/5.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/6.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/7.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/8.json -------------------------------------------------------------------------------- /cypress/fixtures/github/pull-request/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/pull-request/9.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/1.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/10.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/11.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/12.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/13.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/14.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/15.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/16.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/17.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/18.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/19.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/2.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/20.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/21.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/22.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/23.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/3.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/4.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/5.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/6.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/7.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/8.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push-failed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push-failed/9.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/1.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/10.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/11.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/12.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/13.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/14.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/15.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/16.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/17.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/18.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/19.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/2.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/20.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/21.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/22.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/23.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/24.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/25.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/26.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/27.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/28.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/29.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/3.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/30.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/31.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/32.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/33.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/34.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/35.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/36.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/37.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/38.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/39.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/4.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/40.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/41.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/5.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/6.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/7.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/8.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/organisation/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/organisation/9.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/1.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/10.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/11.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/12.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/13.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/14.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/15.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/16.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/17.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/18.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/19.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/2.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/20.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/21.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/22.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/23.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/3.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/4.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/5.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/6.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/7.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/8.json -------------------------------------------------------------------------------- /cypress/fixtures/github/push/personal-account/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/push/personal-account/9.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/1.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/10.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/11.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/12.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/13.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/14.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/15.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/16.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/17.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/18.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/19.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/2.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/20.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/21.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/22.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/23.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/24.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/25.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/26.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/27.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/28.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/29.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/3.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/30.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/31.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/32.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/33.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/34.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/35.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/36.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/37.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/38.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/39.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/4.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/40.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/41.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/42.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/43.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/44.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/45.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/5.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/6.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/7.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/8.json -------------------------------------------------------------------------------- /cypress/fixtures/github/release/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/github/release/9.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/1.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/10.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/11.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/12.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/13.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/14.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/15.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/16.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/17.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/18.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/19.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/2.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/20.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/21.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/22.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/23.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/24.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/25.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/26.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/27.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/28.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/29.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/3.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/30.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/31.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/32.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/33.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/34.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/35.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/36.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/37.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/38.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/39.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/4.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/40.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/41.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/42.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/43.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/44.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/45.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/46.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/47.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/48.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/49.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/5.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/50.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/51.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/52.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/53.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/54.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/55.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/56.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/57.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/58.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/59.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/6.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/60.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/61.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/62.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/63.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/64.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/65.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/66.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/67.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/68.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/69.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/7.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/70.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/71.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/72.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/73.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/74.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/75.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/76.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/77.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/78.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/79.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/8.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/80.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/branch-with-mr/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/branch-with-mr/9.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/1.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/10.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/11.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/12.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/13.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/14.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/15.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/16.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/17.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/18.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/19.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/2.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/20.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/3.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/4.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/5.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/6.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/7.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/8.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/canceled-pipeline/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/canceled-pipeline/9.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/deployment/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/deployment/1.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/deployment/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/deployment/2.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/1.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/10.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/11.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/12.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/13.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/14.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/15.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/16.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/17.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/18.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/19.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/2.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/20.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/21.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/22.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/23.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/24.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/25.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/26.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/27.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/28.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/29.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/3.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/30.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/31.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/32.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/33.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/34.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/35.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/36.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/37.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/38.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/39.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/4.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/40.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/41.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/42.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/43.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/44.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/45.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/46.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/47.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/48.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/49.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/5.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/50.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/51.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/52.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/53.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/54.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/55.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/56.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/6.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/7.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/8.json -------------------------------------------------------------------------------- /cypress/fixtures/gitlab/pipeline/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/gitlab/pipeline/9.json -------------------------------------------------------------------------------- /cypress/fixtures/readthedocs/build-failed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/readthedocs/build-failed/1.json -------------------------------------------------------------------------------- /cypress/fixtures/readthedocs/build-failed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/readthedocs/build-failed/2.json -------------------------------------------------------------------------------- /cypress/fixtures/readthedocs/build-success/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/readthedocs/build-success/1.json -------------------------------------------------------------------------------- /cypress/fixtures/readthedocs/build-success/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/fixtures/readthedocs/build-success/2.json -------------------------------------------------------------------------------- /cypress/integration/a-cleanup.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/a-cleanup.spec.js -------------------------------------------------------------------------------- /cypress/integration/bitbucket/push.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/bitbucket/push.spec.js -------------------------------------------------------------------------------- /cypress/integration/github/pull-request.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/github/pull-request.spec.js -------------------------------------------------------------------------------- /cypress/integration/github/push.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/github/push.spec.js -------------------------------------------------------------------------------- /cypress/integration/github/release.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/github/release.spec.js -------------------------------------------------------------------------------- /cypress/integration/gitlab/branch-with-mr.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/gitlab/branch-with-mr.spec.js -------------------------------------------------------------------------------- /cypress/integration/gitlab/canceled-pipeline.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/gitlab/canceled-pipeline.spec.js -------------------------------------------------------------------------------- /cypress/integration/gitlab/deployment.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/gitlab/deployment.spec.js -------------------------------------------------------------------------------- /cypress/integration/gitlab/pipeline.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/gitlab/pipeline.spec.js -------------------------------------------------------------------------------- /cypress/integration/readthedocs/build.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/integration/readthedocs/build.spec.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/module-client/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docker/module-client/.dockerignore -------------------------------------------------------------------------------- /docker/module-client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docker/module-client/Dockerfile -------------------------------------------------------------------------------- /docker/server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docker/server/.dockerignore -------------------------------------------------------------------------------- /docker/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docker/server/Dockerfile -------------------------------------------------------------------------------- /docs/config/environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/config/environment.md -------------------------------------------------------------------------------- /docs/config/firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/config/firebase.md -------------------------------------------------------------------------------- /docs/config/query-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/config/query-parameters.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/dashboard.gif -------------------------------------------------------------------------------- /docs/images/status/bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/status/bitbucket.png -------------------------------------------------------------------------------- /docs/images/status/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/status/github.png -------------------------------------------------------------------------------- /docs/images/status/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/status/gitlab.png -------------------------------------------------------------------------------- /docs/images/status/readthedocs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/status/readthedocs.gif -------------------------------------------------------------------------------- /docs/images/webhook/github.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/webhook/github.gif -------------------------------------------------------------------------------- /docs/images/webhook/gitlab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/webhook/gitlab.gif -------------------------------------------------------------------------------- /docs/images/webhook/readthedocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/images/webhook/readthedocs.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/module-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/module-client.md -------------------------------------------------------------------------------- /docs/module/gpio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/module/gpio.md -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/modules.md -------------------------------------------------------------------------------- /docs/run/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/run/docker.md -------------------------------------------------------------------------------- /docs/run/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/run/kubernetes.md -------------------------------------------------------------------------------- /docs/run/locally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/run/locally.md -------------------------------------------------------------------------------- /docs/run/raspberry-arm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/run/raspberry-arm.md -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/webhook/bitbucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/webhook/bitbucket.md -------------------------------------------------------------------------------- /docs/webhook/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/webhook/github.md -------------------------------------------------------------------------------- /docs/webhook/gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/webhook/gitlab.md -------------------------------------------------------------------------------- /docs/webhook/readthedocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/docs/webhook/readthedocs.md -------------------------------------------------------------------------------- /frontend/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/App.tsx -------------------------------------------------------------------------------- /frontend/App/AppContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/AppContext.ts -------------------------------------------------------------------------------- /frontend/App/Favicon/Favicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Favicon/Favicon.tsx -------------------------------------------------------------------------------- /frontend/App/Favicon/icon/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Favicon/icon/error.png -------------------------------------------------------------------------------- /frontend/App/Favicon/icon/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Favicon/icon/success.png -------------------------------------------------------------------------------- /frontend/App/Favicon/icon/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Favicon/icon/warning.png -------------------------------------------------------------------------------- /frontend/App/Favicon/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Favicon'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/About/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/About/About.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/About/Contributors/Contributors.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/About/Contributors/Contributors.style.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/About/Contributors/Contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/About/Contributors/Contributors.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/About/Contributors/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Contributors'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/About/Version/Version.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/About/Version/Version.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/About/Version/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Version'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/About/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './About'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Changelog/Changelog.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Changelog/Changelog.style.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Changelog/Changelog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Changelog/Changelog.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Changelog/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Changelog'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Customization/Customization.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Customization/Customization.style.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Customization/Customization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Customization/Customization.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Customization/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Customization'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Documentation/Documentation.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Documentation/Documentation.style.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Documentation/Documentation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Documentation/Documentation.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Documentation/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Documentation'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/SettingsPanel.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/SettingsPanel.style.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/SettingsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/SettingsPanel.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Statuses/Statuses.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Statuses/Statuses.style.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Statuses/Statuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SettingsPanel/Statuses/Statuses.tsx -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/Statuses/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Statuses'; 2 | -------------------------------------------------------------------------------- /frontend/App/SettingsPanel/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsPanel'; 2 | -------------------------------------------------------------------------------- /frontend/App/SocketConnection/SocketConnection.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SocketConnection/SocketConnection.style.tsx -------------------------------------------------------------------------------- /frontend/App/SocketConnection/SocketConnection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/SocketConnection/SocketConnection.tsx -------------------------------------------------------------------------------- /frontend/App/SocketConnection/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './SocketConnection'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Mock/Mock.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Mock/Mock.style.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Mock/Mock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Mock/Mock.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Mock/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Mock'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Merge/Merge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Merge/Merge.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Merge/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Merge'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Process/Process.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Process/Process.style.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Process/Process.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Process/Process.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Process/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Process'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/RunTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/RunTime.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Source/Source.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Source/Source.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Source/icon/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Source/icon/github.svg -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Source/icon/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Source/icon/gitlab.svg -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Source/icon/readthedocs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Source/icon/readthedocs.svg -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Source/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Source'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Status.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Status.style.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/Status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/Status.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/TimePassed/TimePassed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/TimePassed/TimePassed.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/TimePassed/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './TimePassed'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/User/User.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Status/User/User.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/User/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './User'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Status/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Status'; 2 | -------------------------------------------------------------------------------- /frontend/App/Statuses/Statuses.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Statuses.style.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/Statuses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Statuses/Statuses.tsx -------------------------------------------------------------------------------- /frontend/App/Statuses/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Statuses'; 2 | -------------------------------------------------------------------------------- /frontend/App/Toolbar/Toolbar.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Toolbar/Toolbar.style.tsx -------------------------------------------------------------------------------- /frontend/App/Toolbar/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Toolbar/Toolbar.tsx -------------------------------------------------------------------------------- /frontend/App/Toolbar/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Toolbar/github.svg -------------------------------------------------------------------------------- /frontend/App/Toolbar/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Toolbar'; 2 | -------------------------------------------------------------------------------- /frontend/App/Toolbar/light/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Toolbar/light/error.svg -------------------------------------------------------------------------------- /frontend/App/Toolbar/light/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Toolbar/light/success.svg -------------------------------------------------------------------------------- /frontend/App/Toolbar/light/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/App/Toolbar/light/warning.svg -------------------------------------------------------------------------------- /frontend/App/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './App'; 2 | -------------------------------------------------------------------------------- /frontend/api/cimonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/api/cimonitor.ts -------------------------------------------------------------------------------- /frontend/api/cimonitor/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/api/cimonitor/status.ts -------------------------------------------------------------------------------- /frontend/components/Alert/Alert.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/components/Alert/Alert.style.tsx -------------------------------------------------------------------------------- /frontend/components/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/components/Alert/Alert.tsx -------------------------------------------------------------------------------- /frontend/components/Alert/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Alert'; 2 | -------------------------------------------------------------------------------- /frontend/components/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/components/Icon/Icon.tsx -------------------------------------------------------------------------------- /frontend/components/Icon/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Icon'; 2 | -------------------------------------------------------------------------------- /frontend/components/Modifier/Modifier.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/components/Modifier/Modifier.style.tsx -------------------------------------------------------------------------------- /frontend/components/Modifier/Modifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/components/Modifier/Modifier.tsx -------------------------------------------------------------------------------- /frontend/components/Modifier/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Modifier'; 2 | -------------------------------------------------------------------------------- /frontend/components/Toggle/Toggle.style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/components/Toggle/Toggle.style.tsx -------------------------------------------------------------------------------- /frontend/components/Toggle/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/components/Toggle/Toggle.tsx -------------------------------------------------------------------------------- /frontend/components/Toggle/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Toggle'; 2 | -------------------------------------------------------------------------------- /frontend/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/dashboard.tsx -------------------------------------------------------------------------------- /frontend/fonts/fredoka.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/fonts/fredoka.ttf -------------------------------------------------------------------------------- /frontend/fonts/material-icons-round.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/fonts/material-icons-round.otf -------------------------------------------------------------------------------- /frontend/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/globals.css -------------------------------------------------------------------------------- /frontend/hooks/useSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/hooks/useSetting.ts -------------------------------------------------------------------------------- /frontend/hooks/useSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/hooks/useSocket.ts -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/meta/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/meta/android-chrome-192x192.png -------------------------------------------------------------------------------- /frontend/meta/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/meta/android-chrome-512x512.png -------------------------------------------------------------------------------- /frontend/meta/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/meta/apple-touch-icon.png -------------------------------------------------------------------------------- /frontend/meta/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/meta/logo.png -------------------------------------------------------------------------------- /frontend/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/site.webmanifest -------------------------------------------------------------------------------- /frontend/sounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/sounds/README.md -------------------------------------------------------------------------------- /frontend/sounds/Sounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/sounds/Sounds.ts -------------------------------------------------------------------------------- /frontend/sounds/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/sounds/error.mp3 -------------------------------------------------------------------------------- /frontend/sounds/info.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/sounds/info.mp3 -------------------------------------------------------------------------------- /frontend/sounds/success.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/sounds/success.mp3 -------------------------------------------------------------------------------- /frontend/store/cache/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/cache/actions.ts -------------------------------------------------------------------------------- /frontend/store/cache/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/cache/fetch.ts -------------------------------------------------------------------------------- /frontend/store/cache/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/cache/reducer.ts -------------------------------------------------------------------------------- /frontend/store/cache/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/cache/selectors.ts -------------------------------------------------------------------------------- /frontend/store/cache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/cache/types.ts -------------------------------------------------------------------------------- /frontend/store/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './store'; 2 | -------------------------------------------------------------------------------- /frontend/store/settings/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/settings/actions.ts -------------------------------------------------------------------------------- /frontend/store/settings/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/settings/reducer.ts -------------------------------------------------------------------------------- /frontend/store/settings/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/settings/selectors.ts -------------------------------------------------------------------------------- /frontend/store/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/settings/types.ts -------------------------------------------------------------------------------- /frontend/store/status/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/status/actions.ts -------------------------------------------------------------------------------- /frontend/store/status/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/status/reducer.ts -------------------------------------------------------------------------------- /frontend/store/status/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/status/selectors.ts -------------------------------------------------------------------------------- /frontend/store/status/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/status/types.ts -------------------------------------------------------------------------------- /frontend/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/store/store.ts -------------------------------------------------------------------------------- /frontend/style/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/style/colors.ts -------------------------------------------------------------------------------- /frontend/style/size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/style/size.ts -------------------------------------------------------------------------------- /frontend/style/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/style/text.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /local.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/local.env -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/package.json -------------------------------------------------------------------------------- /types/bitbucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/bitbucket.ts -------------------------------------------------------------------------------- /types/cimonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/cimonitor.ts -------------------------------------------------------------------------------- /types/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/github.ts -------------------------------------------------------------------------------- /types/gitlab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/gitlab.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/module.ts -------------------------------------------------------------------------------- /types/readthedocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/readthedocs.ts -------------------------------------------------------------------------------- /types/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/types/status.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FuturePortal/CIMonitor/HEAD/yarn.lock --------------------------------------------------------------------------------