/
githubmirror
/
meilisearch
Обзор
Документация
Войти
/
githubmirror
/
meilisearch
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/dependency-issue.yml
24 строки
758 B
curquiza
Fix code security issues in GitHub Actions workflows
05 авг 2026, 12:52
05 авг 2026, 12:52
b5ccca7
Код
Авторство
О чём код?
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@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 - 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