mirror of
				https://github.com/XRPLF/clio.git
				synced 2025-11-04 11:55:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			637 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			637 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Pre-commit auto-update
 | 
						|
 | 
						|
on:
 | 
						|
  # every first day of the month
 | 
						|
  schedule:
 | 
						|
    - cron: "0 0 1 * *"
 | 
						|
  pull_request:
 | 
						|
    branches: [release/*, develop]
 | 
						|
    paths:
 | 
						|
      - ".pre-commit-config.yaml"
 | 
						|
  workflow_dispatch:
 | 
						|
 | 
						|
jobs:
 | 
						|
  auto-update:
 | 
						|
    uses: XRPLF/actions/.github/workflows/pre-commit-autoupdate.yml@afbcbdafbe0ce5439492fb87eda6441371086386
 | 
						|
    with:
 | 
						|
      sign_commit: true
 | 
						|
      committer: "Clio CI <skuznetsov@ripple.com>"
 | 
						|
      reviewers: "godexsoft,kuznetsss,PeterChen13579,mathbunnyru"
 | 
						|
    secrets:
 | 
						|
      GPG_PRIVATE_KEY: ${{ secrets.ACTIONS_GPG_PRIVATE_KEY }}
 | 
						|
      GPG_PASSPHRASE: ${{ secrets.ACTIONS_GPG_PASSPHRASE }}
 |