2022-07-06 01:34:57 +08:00
|
|
|
name: Create issue to upgrade dependencies
|
2022-07-05 23:28:29 +08:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 1 */3 *'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
create-issue:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-07-06 02:08:59 +08:00
|
|
|
- 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
|