mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-25 19:31:05 +00:00
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:
parent
eac2f10770
commit
bbe3f4e393
7 changed files with 1217 additions and 2805 deletions
2741
docs/pnpm-lock.yaml
2741
docs/pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
1255
web/pnpm-lock.yaml
1255
web/pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -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') }}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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'"
|
||||
|
|
Loading…
Reference in a new issue