Remove template and add GHA from review

This commit is contained in:
Vasiliy Soldatkin 2022-07-05 21:08:59 +03:00
parent 43fecbf382
commit 480b881e15
2 changed files with 17 additions and 7 deletions

View File

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

@ -7,8 +7,21 @@ on:
jobs:
create-issue:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- run: gh issue create --title "Upgrade dependencies" --label "dependencies,maintenance" --body-file ".github/ISSUE_TEMPLATE/update_dependencies.md"
- 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