mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-06-27 16:35:58 +00:00
- Forgejo (since v8,38ea77ebbe
) does not use the value of this header, it was [introduced in v1.20](371520d7ab
). - Older forgejo version than v8 handle it gracefully if this value is not sent. Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/496 Reviewed-by: earl-warren <earl-warren@noreply.code.forgejo.org> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
9 lines
180 B
Go
9 lines
180 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package client
|
|
|
|
const (
|
|
UUIDHeader = "x-runner-uuid"
|
|
TokenHeader = "x-runner-token"
|
|
)
|