mirror of
				https://github.com/appleboy/scp-action.git
				synced 2025-10-31 22:03:47 +00:00 
			
		
		
		
	- Add GitHub Actions workflow for GoReleaser - Configure GoReleaser to skip builds - Set up changelog groups for features, bug fixes, enhancements, refactors, build process updates, and documentation updates Signed-off-by: appleboy <appleboy.tw@gmail.com>
		
			
				
	
	
		
			29 lines
		
	
	
		
			668 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			668 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| builds:
 | |
|   - # If true, skip the build.
 | |
|     # Useful for library projects.
 | |
|     # Default is false
 | |
|     skip: true
 | |
| 
 | |
| changelog:
 | |
|   use: github
 | |
|   groups:
 | |
|     - title: Features
 | |
|       regexp: "^.*feat[(\\w)]*:+.*$"
 | |
|       order: 0
 | |
|     - title: "Bug fixes"
 | |
|       regexp: "^.*fix[(\\w)]*:+.*$"
 | |
|       order: 1
 | |
|     - title: "Enhancements"
 | |
|       regexp: "^.*chore[(\\w)]*:+.*$"
 | |
|       order: 2
 | |
|     - title: "Refactor"
 | |
|       regexp: "^.*refactor[(\\w)]*:+.*$"
 | |
|       order: 3
 | |
|     - title: "Build process updates"
 | |
|       regexp: ^.*?(build|ci)(\(.+\))??!?:.+$
 | |
|       order: 4
 | |
|     - title: "Documentation updates"
 | |
|       regexp: ^.*?docs?(\(.+\))??!?:.+$
 | |
|       order: 4
 | |
|     - title: Others
 |