Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/cli/run_workflow_execution_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,12 @@ func TestRunWorkflowOnGitHub_FlagCombinations(t *testing.T) {
push: true,
repoOverride: "owner/repo",
expectError: true,
// Accept either the expected validation error, GH_TOKEN error in CI, or HTTP 404 for non-existent repo
// Accept either the expected validation error, GH_TOKEN error in CI, HTTP 404 for non-existent repo, or HTTP 403 for auth issues
errorContains: []string{
"--push flag is only supported for local workflows",
"GH_TOKEN environment variable",
"HTTP 404",
"HTTP 403",
},
},
}
Expand Down
2 changes: 2 additions & 0 deletions pkg/workflow/safe_outputs_permissions_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//go:build !integration

package workflow

import (
Expand Down
Loading