mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-07-17 08:51:33 +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
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">
|
<Scaffold enable-tabs :go-back="goBack">
|
||||||
<template #title>
|
<template #title>
|
||||||
<span>
|
<span>
|
||||||
<router-link :to="{ name: 'org', params: { orgId: repo.org_id } }" class="hover:underline">
|
<router-link :to="{ name: 'org', params: { orgId: repo!.org_id } }" class="hover:underline">
|
||||||
{{ repo.owner }}
|
{{ repo!.owner }}
|
||||||
</router-link>
|
</router-link>
|
||||||
/
|
/
|
||||||
<router-link :to="{ name: 'repo' }" class="hover:underline">
|
<router-link :to="{ name: 'repo' }" class="hover:underline">
|
||||||
{{ repo.name }}
|
{{ repo!.name }}
|
||||||
</router-link>
|
</router-link>
|
||||||
/
|
/
|
||||||
{{ $t('settings') }}
|
{{ $t('settings') }}
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
<div class="flex w-full min-h-0 flex-grow gap-4 flex-wrap-reverse md:flex-nowrap">
|
<div class="flex w-full min-h-0 flex-grow gap-4 flex-wrap-reverse md:flex-nowrap">
|
||||||
<PipelineStepList
|
<PipelineStepList
|
||||||
v-model:selected-step-id="selectedStepId"
|
v-model:selected-step-id="selectedStepId"
|
||||||
:class="{ 'hidden md:flex': pipeline.status === 'blocked' }"
|
:class="{ 'hidden md:flex': pipeline!.status === 'blocked' }"
|
||||||
:pipeline="pipeline"
|
:pipeline="pipeline!"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<div class="flex items-start justify-center flex-grow relative basis-full md:basis-auto">
|
<div class="flex items-start justify-center flex-grow relative basis-full md:basis-auto">
|
||||||
@ -18,7 +18,7 @@
|
|||||||
</Panel>
|
</Panel>
|
||||||
</Container>
|
</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>
|
<Panel>
|
||||||
<div class="flex flex-col items-center text-center gap-4">
|
<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" />
|
<Icon name="status-error" class="w-16 h-16 text-wp-state-error-100" />
|
||||||
@ -28,12 +28,12 @@
|
|||||||
</Panel>
|
</Panel>
|
||||||
</Container>
|
</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>
|
<Panel>
|
||||||
<div class="flex flex-col items-center gap-4">
|
<div class="flex flex-col items-center gap-4">
|
||||||
<Icon name="status-blocked" class="w-16 h-16" />
|
<Icon name="status-blocked" class="w-16 h-16" />
|
||||||
<span class="text-xl">{{ $t('repo.pipeline.protected.awaits') }}</span>
|
<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
|
<Button
|
||||||
color="green"
|
color="green"
|
||||||
:text="$t('repo.pipeline.protected.approve')"
|
:text="$t('repo.pipeline.protected.approve')"
|
||||||
@ -51,7 +51,7 @@
|
|||||||
</Panel>
|
</Panel>
|
||||||
</Container>
|
</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>
|
<Panel>
|
||||||
<div class="flex flex-col items-center gap-4">
|
<div class="flex flex-col items-center gap-4">
|
||||||
<Icon name="status-declined" class="w-16 h-16 text-wp-state-error-100" />
|
<Icon name="status-declined" class="w-16 h-16 text-wp-state-error-100" />
|
||||||
@ -63,7 +63,7 @@
|
|||||||
<PipelineLog
|
<PipelineLog
|
||||||
v-else-if="selectedStepId !== null"
|
v-else-if="selectedStepId !== null"
|
||||||
v-model:step-id="selectedStepId"
|
v-model:step-id="selectedStepId"
|
||||||
:pipeline="pipeline"
|
:pipeline="pipeline!"
|
||||||
class="fixed top-0 left-0 w-full h-full md:absolute"
|
class="fixed top-0 left-0 w-full h-full md:absolute"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<Panel>
|
<Panel>
|
||||||
<ul class="list-disc list-inside w-full">
|
<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>
|
</ul>
|
||||||
</Panel>
|
</Panel>
|
||||||
</template>
|
</template>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<Panel>
|
<Panel>
|
||||||
<div class="grid justify-center gap-x-4 text-left grid-3-1">
|
<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
|
<Icon
|
||||||
name="attention"
|
name="attention"
|
||||||
class="flex-shrink-0 my-1"
|
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>
|
<span class="min-w-0 whitespace-nowrap overflow-hidden overflow-ellipsis" :title="message">{{ title }}</span>
|
||||||
</div>
|
</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">
|
<div class="flex content-start gap-x-2">
|
||||||
<Button
|
<Button
|
||||||
v-if="pipeline.status === 'pending' || pipeline.status === 'running'"
|
v-if="pipeline.status === 'pending' || pipeline.status === 'running'"
|
||||||
|
Loading…
Reference in New Issue
Block a user