chore(deps): lock file maintenance (#3750)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: qwerty287 <qwerty287@posteo.de>
This commit is contained in:
renovate[bot] 2024-06-03 08:41:32 +02:00 committed by GitHub
parent eac2f10770
commit bbe3f4e393
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 1217 additions and 2805 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -2,12 +2,12 @@
<Scaffold enable-tabs :go-back="goBack">
<template #title>
<span>
<router-link :to="{ name: 'org', params: { orgId: repo.org_id } }" class="hover:underline">
{{ repo.owner }}
<router-link :to="{ name: 'org', params: { orgId: repo!.org_id } }" class="hover:underline">
{{ repo!.owner }}
</router-link>
/
<router-link :to="{ name: 'repo' }" class="hover:underline">
{{ repo.name }}
{{ repo!.name }}
</router-link>
/
{{ $t('settings') }}

View file

@ -3,8 +3,8 @@
<div class="flex w-full min-h-0 flex-grow gap-4 flex-wrap-reverse md:flex-nowrap">
<PipelineStepList
v-model:selected-step-id="selectedStepId"
:class="{ 'hidden md:flex': pipeline.status === 'blocked' }"
:pipeline="pipeline"
:class="{ 'hidden md:flex': pipeline!.status === 'blocked' }"
:pipeline="pipeline!"
/>
<div class="flex items-start justify-center flex-grow relative basis-full md:basis-auto">
@ -18,7 +18,7 @@
</Panel>
</Container>
<Container v-else-if="pipeline.errors?.some((e) => !e.is_warning)" fill-width class="p-0">
<Container v-else-if="pipeline!.errors?.some((e) => !e.is_warning)" fill-width class="p-0">
<Panel>
<div class="flex flex-col items-center text-center gap-4">
<Icon name="status-error" class="w-16 h-16 text-wp-state-error-100" />
@ -28,12 +28,12 @@
</Panel>
</Container>
<Container v-else-if="pipeline.status === 'blocked'" fill-width class="p-0">
<Container v-else-if="pipeline!.status === 'blocked'" fill-width class="p-0">
<Panel>
<div class="flex flex-col items-center gap-4">
<Icon name="status-blocked" class="w-16 h-16" />
<span class="text-xl">{{ $t('repo.pipeline.protected.awaits') }}</span>
<div v-if="repoPermissions.push" class="flex gap-2 flex-wrap items-center justify-center">
<div v-if="repoPermissions!.push" class="flex gap-2 flex-wrap items-center justify-center">
<Button
color="green"
:text="$t('repo.pipeline.protected.approve')"
@ -51,7 +51,7 @@
</Panel>
</Container>
<Container v-else-if="pipeline.status === 'declined'" fill-width class="p-0">
<Container v-else-if="pipeline!.status === 'declined'" fill-width class="p-0">
<Panel>
<div class="flex flex-col items-center gap-4">
<Icon name="status-declined" class="w-16 h-16 text-wp-state-error-100" />
@ -63,7 +63,7 @@
<PipelineLog
v-else-if="selectedStepId !== null"
v-model:step-id="selectedStepId"
:pipeline="pipeline"
:pipeline="pipeline!"
class="fixed top-0 left-0 w-full h-full md:absolute"
/>
</div>

View file

@ -1,7 +1,7 @@
<template>
<Panel>
<ul class="list-disc list-inside w-full">
<li v-for="file in pipeline.changed_files" :key="file">{{ file }}</li>
<li v-for="file in pipeline!.changed_files" :key="file">{{ file }}</li>
</ul>
</Panel>
</template>

View file

@ -1,7 +1,7 @@
<template>
<Panel>
<div class="grid justify-center gap-x-4 text-left grid-3-1">
<template v-for="(error, i) in pipeline.errors" :key="i">
<template v-for="(error, i) in pipeline!.errors" :key="i">
<Icon
name="attention"
class="flex-shrink-0 my-1"

View file

@ -29,7 +29,7 @@
<span class="min-w-0 whitespace-nowrap overflow-hidden overflow-ellipsis" :title="message">{{ title }}</span>
</div>
<template v-if="repoPermissions.push && pipeline.status !== 'declined' && pipeline.status !== 'blocked'">
<template v-if="repoPermissions!.push && pipeline.status !== 'declined' && pipeline.status !== 'blocked'">
<div class="flex content-start gap-x-2">
<Button
v-if="pipeline.status === 'pending' || pipeline.status === 'running'"