mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-05 20:26:31 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
715 B
YAML
25 lines
715 B
YAML
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@v5
|
|
- name: Download the issue template
|
|
run: curl -s https://raw.githubusercontent.com/meilisearch/meilisearch/main/.github/templates/dependency-issue.md > $ISSUE_TEMPLATE
|
|
- name: Create issue
|
|
run: |
|
|
gh issue create \
|
|
--title 'Upgrade dependencies' \
|
|
--label 'dependencies,maintenance' \
|
|
--body-file $ISSUE_TEMPLATE
|