mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 01:46:28 +00:00 
			
		
		
		
	Clean CI file names
This commit is contained in:
		
							
								
								
									
										24
									
								
								.github/workflows/dependency-issue.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								.github/workflows/dependency-issue.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
name: Create issue to upgrade dependencies
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  schedule:
 | 
			
		||||
    # Run the first of the month, every 3 month
 | 
			
		||||
    - cron: '0 0 1 */3 *'
 | 
			
		||||
  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
 | 
			
		||||
		Reference in New Issue
	
	Block a user