Compare commits
No commits in common. "gitea-v1.0.37" and "dev" have entirely different histories.
gitea-v1.0
...
dev
@ -198,7 +198,6 @@ runs:
|
||||
EXCLUDE_COMMENTS_BY_ACTOR: ${{ inputs.exclude_comments_by_actor }}
|
||||
GITHUB_RUN_ID: ${{ github.run_id }}
|
||||
GITEA_RUN_NUMBER: ${{ env.GITEA_RUN_NUMBER }}
|
||||
USE_GITEA_API: ${{ env.USE_GITEA_API }}
|
||||
USE_STICKY_COMMENT: ${{ inputs.use_sticky_comment }}
|
||||
DEFAULT_WORKFLOW_TOKEN: ${{ github.token }}
|
||||
USE_COMMIT_SIGNING: ${{ inputs.use_commit_signing }}
|
||||
@ -325,7 +324,6 @@ runs:
|
||||
CLAUDE_COMMENT_ID: ${{ steps.prepare.outputs.claude_comment_id }}
|
||||
GITHUB_RUN_ID: ${{ steps.prepare.outputs.run_id || github.run_id }}
|
||||
GITEA_RUN_NUMBER: ${{ env.GITEA_RUN_NUMBER }}
|
||||
USE_GITEA_API: ${{ env.USE_GITEA_API }}
|
||||
GITHUB_TOKEN: ${{ steps.prepare.outputs.GITHUB_TOKEN }}
|
||||
GH_TOKEN: ${{ steps.prepare.outputs.GITHUB_TOKEN }}
|
||||
GITHUB_EVENT_NAME: ${{ github.event_name }}
|
||||
|
||||
@ -78,8 +78,8 @@ export async function setupGiteaRunId(
|
||||
owner: string,
|
||||
repo: string,
|
||||
): Promise<void> {
|
||||
// Only proceed if we're in Gitea mode
|
||||
if (!USE_GITEA_API) {
|
||||
// Only proceed if we're in Gitea and don't already have a run ID
|
||||
if (!USE_GITEA_API || process.env.GITHUB_RUN_ID) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user