Create issue to upgrade dependencies #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create issue to upgrade dependencies | |
on: | |
schedule: | |
# Run the first of the month, every 6 month | |
- cron: '0 0 1 */6 *' | |
workflow_dispatch: | |
jobs: | |
create-issue: | |
runs-on: ubuntu-latest | |
env: | |
ISSUE_TEMPLATE: issue-template.md | |
GH_TOKEN: ${{ secrets.MEILI_BOT_GH_PAT }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download the issue template | |
run: curl -s https://raw.githubusercontent.com/meilisearch/engine-team/main/issue-templates/dependency-issue.md > $ISSUE_TEMPLATE | |
- name: Create issue | |
run: | | |
gh issue create \ | |
--title 'Upgrade dependencies' \ | |
--label 'dependencies,maintenance' \ | |
--body-file $ISSUE_TEMPLATE |