mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 18:17:39 +08:00
Merge #2585
2585: Add CI creates issue updating dependencies r=curquiza a=VasiliySoldatkin Adds CI, which uses cron GHA to create Issue "Upgrade dependencies" every 3 months Context: [#2569](https://github.com/meilisearch/meilisearch/issues/2569) Co-authored-by: Vasiliy Soldatkin <vasiliy.soldatkin@gmail.com> Co-authored-by: Clémentine Urquizar - curqui <clementine@meilisearch.com>
This commit is contained in:
commit
f4989590db
26
.github/workflows/create-issue-dependencies.yml
vendored
Normal file
26
.github/workflows/create-issue-dependencies.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Create issue to upgrade dependencies
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 0 1 */3 *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
create-issue:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Create an issue
|
||||
uses: actions-ecosystem/action-create-issue@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
title: Upgrade dependencies
|
||||
body: |
|
||||
We need to update the dependencies of the Meilisearch
|
||||
repository, and, if possible, the dependencies of all
|
||||
the core-team repositories that Meilisearch depends on
|
||||
(milli, charabia, heed...).
|
||||
|
||||
⚠️ This issue should only be done at the beginning of the sprint!
|
||||
labels: |
|
||||
dependencies
|
||||
maintenance
|
Loading…
Reference in New Issue
Block a user