mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-23 00:46:30 +00:00
chore(deps): lock file maintenance (#3190)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use the latest dependency versions. --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - "before 4am" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/woodpecker-ci/woodpecker). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjcuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyNy4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: qwerty287 <qwerty287@posteo.de> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
10f2e209d6
commit
7eff20d1b7
5 changed files with 1971 additions and 1906 deletions
|
@ -41,7 +41,7 @@ As an alternative, you can install an agent running the local backend directly o
|
||||||
|
|
||||||
### Deprecated `platform` filter
|
### Deprecated `platform` filter
|
||||||
|
|
||||||
The `platform` filter has been removed. Use the more advanced labels instead ([read more](./docs/usage/workflow-syntax#filter-by-platform)).
|
The `platform` filter has been removed. Use the more advanced labels instead ([read more](../docs/usage/workflow-syntax#filter-by-platform)).
|
||||||
|
|
||||||
### Update Docker to v24
|
### Update Docker to v24
|
||||||
|
|
||||||
|
|
2674
docs/pnpm-lock.yaml
2674
docs/pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
1171
web/pnpm-lock.yaml
1171
web/pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -23,10 +23,9 @@ if (!repo || !repoPermissions) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const allPipelines = inject<Ref<Pipeline[]>>('pipelines');
|
const allPipelines = inject<Ref<Pipeline[]>>('pipelines');
|
||||||
const pipelines = computed(
|
const pipelines = computed(() =>
|
||||||
() =>
|
allPipelines?.value.filter(
|
||||||
allPipelines?.value.filter(
|
(b) => b.branch === branch.value && b.event !== 'pull_request' && b.event !== 'pull_request_closed',
|
||||||
(b) => b.branch === branch.value && b.event !== 'pull_request' && b.event !== 'pull_request_closed',
|
),
|
||||||
),
|
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -25,16 +25,15 @@ if (!repo.value.pr_enabled || !repo.value.allow_pr) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const allPipelines = inject<Ref<Pipeline[]>>('pipelines');
|
const allPipelines = inject<Ref<Pipeline[]>>('pipelines');
|
||||||
const pipelines = computed(
|
const pipelines = computed(() =>
|
||||||
() =>
|
allPipelines?.value.filter(
|
||||||
allPipelines?.value.filter(
|
(b) =>
|
||||||
(b) =>
|
(b.event === 'pull_request' || b.event === 'pull_request_closed') &&
|
||||||
(b.event === 'pull_request' || b.event === 'pull_request_closed') &&
|
b.ref
|
||||||
b.ref
|
.replaceAll('refs/pull/', '')
|
||||||
.replaceAll('refs/pull/', '')
|
.replaceAll('refs/merge-requests/', '')
|
||||||
.replaceAll('refs/merge-requests/', '')
|
.replaceAll('/merge', '')
|
||||||
.replaceAll('/merge', '')
|
.replaceAll('/head', '') === pullRequest.value,
|
||||||
.replaceAll('/head', '') === pullRequest.value,
|
),
|
||||||
),
|
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue