diff --git a/.github/workflows/create-issue-dependencies.yml b/.github/workflows/create-issue-dependencies.yml new file mode 100644 index 000000000..625e6e182 --- /dev/null +++ b/.github/workflows/create-issue-dependencies.yml @@ -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