mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	More about codespell: https://github.com/codespell-project/codespell . I personally introduced it to dozens if not hundreds of projects already and so far only positive feedback. ``` ❯ grep lint-spell Makefile @echo " - lint-spell lint spelling" @echo " - lint-spell-fix lint spelling and fix issues" lint: lint-frontend lint-backend lint-spell lint-fix: lint-frontend-fix lint-backend-fix lint-spell-fix .PHONY: lint-spell lint-spell: lint-codespell .PHONY: lint-spell-fix lint-spell-fix: lint-codespell-fix ❯ git grep lint- -- .forgejo/ .forgejo/workflows/testing.yml: - run: make --always-make -j$(nproc) lint-backend checks-backend # ensure the "go-licenses" make target runs .forgejo/workflows/testing.yml: - run: make lint-frontend ``` so how would you like me to invoke `lint-codespell` on CI? (without that would be IMHO very suboptimal and let typos sneak in) Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3270 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Co-authored-by: Yaroslav Halchenko <debian@onerussian.com> Co-committed-by: Yaroslav Halchenko <debian@onerussian.com>
		
			
				
	
	
		
			48 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 20124 The Forgejo Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package integration
 | |
| 
 | |
| import (
 | |
| 	"net/url"
 | |
| 	"testing"
 | |
| 
 | |
| 	actions_model "code.gitea.io/gitea/models/actions"
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 	issues_model "code.gitea.io/gitea/models/issues"
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| 	"code.gitea.io/gitea/models/unittest"
 | |
| 	user_model "code.gitea.io/gitea/models/user"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/services/actions"
 | |
| 	"code.gitea.io/gitea/services/automerge"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestActionsAutomerge(t *testing.T) {
 | |
| 	onGiteaRun(t, func(t *testing.T, u *url.URL) {
 | |
| 		assert.True(t, setting.Actions.Enabled, "Actions should be enabled")
 | |
| 
 | |
| 		ctx := db.DefaultContext
 | |
| 
 | |
| 		user := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
 | |
| 		pr := unittest.AssertExistsAndLoadBean(t, &issues_model.PullRequest{ID: 2})
 | |
| 		job := unittest.AssertExistsAndLoadBean(t, &actions_model.ActionRunJob{ID: 292})
 | |
| 
 | |
| 		assert.False(t, pr.HasMerged, "PR should not be merged")
 | |
| 		assert.Equal(t, issues_model.PullRequestStatusMergeable, pr.Status, "PR should be mergeable")
 | |
| 
 | |
| 		scheduled, err := automerge.ScheduleAutoMerge(ctx, user, pr, repo_model.MergeStyleMerge, "Dummy")
 | |
| 
 | |
| 		assert.NoError(t, err, "PR should be scheduled for automerge")
 | |
| 		assert.True(t, scheduled, "PR should be scheduled for automerge")
 | |
| 
 | |
| 		actions.CreateCommitStatus(ctx, job)
 | |
| 
 | |
| 		pr = unittest.AssertExistsAndLoadBean(t, &issues_model.PullRequest{ID: 2})
 | |
| 
 | |
| 		assert.True(t, pr.HasMerged, "PR should be merged")
 | |
| 	},
 | |
| 	)
 | |
| }
 |