Add CI creates issue updating dependencies

This commit is contained in:
Vasiliy Soldatkin 2022-07-05 18:28:29 +03:00
parent c1ad56281d
commit 2c300c72c9
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,3 @@
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!

View File

@ -0,0 +1,16 @@
name: Create Issue "Upgrade dependencies"
on:
schedule:
- cron: '0 0 1 */3 *'
workflow_dispatch:
jobs:
create-issue:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v1
- run: gh issue create --title "Upgrade dependencies" --label "dependencies,maintenance" --body-file ".github/ISSUE_TEMPLATE/update_dependencies.md"