feat: universal file for github-actions

This commit is contained in:
Ivan Shmidt
2020-09-29 12:39:14 +02:00
parent 248f615148
commit 37da165e70
8 changed files with 41 additions and 8 deletions
@@ -32,7 +32,7 @@ import {
useApi,
} from '@backstage/core';
import ExternalLinkIcon from '@material-ui/icons/Launch';
import { GITHUB_ACTIONS_ANNOTATION } from '../useProjectName';
import { GITHUB_ACTIONS_ANNOTATION } from '../../../universal';
const useStyles = makeStyles<Theme>({
externalLinkIcon: {
@@ -19,7 +19,7 @@ import { Routes, Route } from 'react-router';
import { rootRouteRef, buildRouteRef } from '../plugin';
import { WorkflowRunDetails } from './WorkflowRunDetails';
import { WorkflowRunsTable } from './WorkflowRunsTable';
import { GITHUB_ACTIONS_ANNOTATION } from './useProjectName';
import { GITHUB_ACTIONS_ANNOTATION } from '../../universal';
import { WarningPanel } from '@backstage/core';
export const isPluginApplicableToEntity = (entity: Entity) =>
@@ -16,8 +16,7 @@
import { useAsync } from 'react-use';
import { Entity } from '@backstage/catalog-model';
export const GITHUB_ACTIONS_ANNOTATION = 'github.com/project-slug';
import { GITHUB_ACTIONS_ANNOTATION } from '../../universal';
export const useProjectName = (entity: Entity) => {
const { value, loading, error } = useAsync(async () => {
-1
View File
@@ -18,4 +18,3 @@ export { plugin } from './plugin';
export * from './api';
export { Router, isPluginApplicableToEntity } from './components/Router';
export * from './components/Cards';
export { GITHUB_ACTIONS_ANNOTATION } from './components/useProjectName';