mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 18:17:39 +08:00
Add CI creates issue updating dependencies
This commit is contained in:
parent
c1ad56281d
commit
2c300c72c9
3
.github/ISSUE_TEMPLATE/update_dependencies.md
vendored
Normal file
3
.github/ISSUE_TEMPLATE/update_dependencies.md
vendored
Normal 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!
|
16
.github/workflows/create-issue-dependencies.yml
vendored
Normal file
16
.github/workflows/create-issue-dependencies.yml
vendored
Normal 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"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user