Issue events are triggered by activity in issues and pull requests and are available in the Issue Events API and the Timeline Events API . Each event type specifies whether the event is available in the Issue Events or Timeline Events APIs.
GitHub's REST API considers every pull request to be an issue, but not every issue is a pull request. For this reason, the Issue Events and Timeline Events endpoints may return both issues and pull requests in the response. Pull requests have a pull_request
property in the issue
object. Because pull requests are issues, issue and pull request numbers do not overlap in a repository. For example, if you open your first issue in a repository, the number will be 1. If you then open a pull request, the number will be 2. Each event type specifies if the event occurs in pull request, issues, or both.
Issue event object common properties
Issue events all have the same object structure, except events that are only available in the Timeline Events API. Some events also include additional properties that provide more context about the event resources. Refer to the specific event to for details about any properties that differ from this object format.
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
added_to_project
The issue or pull request was added to a project board. このイベントは、リポジトリでプロジェクト ボードが有効 になっている� �合の応答でのみ表示されます。
Availability
Issue type Issue events API Timeline events API X X
Event object properties
注: プロジェクト カードの詳細が、プロジェクト関連の Issue およびタイ� ライン イベントの REST API 応答に示されるようになりました。 この機能は、プレビューとして開発者が利用できるようになりました。 詳細については、ブログ記事 を参照してく� さい。
project_card
属性を受け取るには、リポジトリに対してプロジェクト ボードを有効 にする必要があります。また、Accept
ヘッダーでカスタ� メディアの種類 を指定する必要があります。
application/vnd.github.starfox-preview+json
警告: この API は、プレビュー期間中は事前の通知なしに変更されることがあります。 プレビューの機能は、実稼働環境での利用はサポートされていません。 問題があった� �合には、サイト管理者にお問い合わせく� さい。
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 project_card
object
プロジェクト カード オブジェクト。 project_id
integer
プロジェクト カードの一意識別子。 project_url
string
プロジェクト カードを取得する REST API URL。 column_name
string
Issue がある列の名前。
assigned
The issue or pull request was assigned to a user.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 assignee
object
この issue から割り当て解除されたユーザー。 assigner
object
この issue からの割り当て解除を実行したユーザー。
automatic_base_change_failed
GitHub unsuccessfully attempted to automatically change the base branch of the pull request.
Availability
Issue type Issue events API Timeline events API X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
automatic_base_change_succeeded
GitHub successfully attempted to automatically change the base branch of the pull request.
Availability
Issue type Issue events API Timeline events API X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
base_ref_changed
The base reference branch of the pull request changed.
Availability
Issue type Issue events API Timeline events API X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
closed
The issue or pull request was closed. When the commit_id
is present, it identifies the commit that closed the issue using "closes / fixes" syntax. For more information about the syntax, see "Linking a pull request to an issue ".
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
A comment was added to the issue or pull request.
Availability
Issue type Issue events API Timeline events API X
Event object properties
このイベント プロパティは、Issue イベント オブジェクトの共通プロパティ と同じ構� を使用しません。 このイベントに対しては、以下の属性が返されます。
Name Type Description url
string
The REST API URL to retrieve the issue comment. html_url
string
The HTML URL of the issue comment. issue_url
string
The HTML URL of the issue. id
integer
The unique identifier of the event. node_id
string
The Global Node ID of the event. user
object
The person who commented on the issue. created_at
string
The timestamp indicating when the comment was added. updated_at
string
The timestamp indicating when the comment was updated or created, if the comment is never updated. author_association
string
The permissions the user has in the issue's repository. For example, the value would be "OWNER"
if the owner of repository created a comment. body
string
The comment body text. event
string
The event value is "commented"
. actor
object
The person who generated the event.
committed
A commit was added to the pull request's HEAD
branch.
Availability
Issue type Issue events API Timeline events API X
Event object properties
このイベント プロパティは、Issue イベント オブジェクトの共通プロパティ と同じ構� を使用しません。 このイベントに対しては、以下の属性が返されます。
Name Type Description sha
string
The SHA of the commit in the pull request. node_id
string
The Global Node ID of the event. url
string
The REST API URL to retrieve the commit. html_url
string
The HTML URL of the commit. author
object
The person who authored the commit. committer
object
The person who committed the commit on behalf of the author. tree
object
The Git tree of the commit. message
string
The commit message. parents
array of objects
A list of parent commits. verification
object
The result of verifying the commit's signature. For more information, see "Signature verification object ." event
string
The event value is "committed"
.
connected
The issue or pull request was linked to another issue or pull request. For more information, see "Linking a pull request to an issue ".
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
convert_to_draft
The pull request was converted to draft mode.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
converted_note_to_issue
The issue was created by converting a note in a project board to an issue. このイベントは、リポジトリでプロジェクト ボードが有効 になっている� �合の応答でのみ表示されます。
Availability
Issue type Issue events API Timeline events API X X
Event object properties
注: プロジェクト カードの詳細が、プロジェクト関連の Issue およびタイ� ライン イベントの REST API 応答に示されるようになりました。 この機能は、プレビューとして開発者が利用できるようになりました。 詳細については、ブログ記事 を参照してく� さい。
project_card
属性を受け取るには、リポジトリに対してプロジェクト ボードを有効 にする必要があります。また、Accept
ヘッダーでカスタ� メディアの種類 を指定する必要があります。
application/vnd.github.starfox-preview+json
警告: この API は、プレビュー期間中は事前の通知なしに変更されることがあります。 プレビューの機能は、実稼働環境での利用はサポートされていません。 問題があった� �合には、サイト管理者にお問い合わせく� さい。
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 project_card
object
プロジェクト カード オブジェクト。 project_id
integer
プロジェクト カードの一意識別子。 project_url
string
プロジェクト カードを取得する REST API URL。 column_name
string
Issue がある列の名前。
converted_to_discussion
The issue was closed and converted to a discussion.
Availability
Issue type Issue events API Timeline events API X
Event Object Properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
cross-referenced
The issue or pull request was referenced from another issue or pull request.
Availability
Issue type Issue events API Timeline events API X
Event object properties
このイベント プロパティは、Issue イベント オブジェクトの共通プロパティ と同じ構� を使用しません。 このイベントに対しては、以下の属性が返されます。
Name Type Description actor
object
The person who generated the event. created_at
string
The timestamp indicating when the cross-reference was added. updated_at
string
The timestamp indicating when the cross-reference was updated or created, if the cross-reference is never updated. source
object
The issue or pull request that added a cross-reference. source[type]
string
This value will always be "issue"
because pull requests are of type issue. Only cross-reference events triggered by issues or pull requests are returned in the Timeline Events API. To determine if the issue that triggered the event is a pull request, you can check if the source[issue][pull_request]
object exists. source[issue]
object
The issue
object that added the cross-reference. event
string
The event value is "cross-referenced"
.
demilestoned
The issue or pull request was removed from a milestone.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 milestone
object
The milestone object. milestone[title]
string
The title of the milestone.
deployed
The pull request was deployed.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
deployment_environment_changed
The pull request deployment environment was changed.
Availability
Issue type Issue events API Timeline events API X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
disconnected
The issue or pull request was unlinked from another issue or pull request. For more information, see "Linking a pull request to an issue ".
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
head_ref_deleted
The pull request's HEAD
branch was deleted.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
head_ref_restored
The pull request's HEAD
branch was restored to the last known commit.
Availability
Issue type Issue events API Timeline events API X X
head_ref_force_pushed
The pull request's HEAD branch was force pushed.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
labeled
A label was added to the issue or pull request.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 label
object
この issue から削除されたラベル label[name]
label[color]
string
16 進数カラー コード。
locked
The issue or pull request was locked.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 lock_reason
string
The reason an issue or pull request conversation was locked, if one was provided.
mentioned
The actor
was @mentioned
in an issue or pull request body.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
marked_as_duplicate
A user with write permissions marked an issue as a duplicate of another issue, or a pull request as a duplicate of another pull request.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
merged
The pull request was merged. The commit_id
attribute is the SHA1 of the HEAD
commit that was merged. The commit_repository
is always the same as the main repository.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
milestoned
The issue or pull request was added to a milestone.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 milestone
object
The milestone object. milestone[title]
string
The title of the milestone.
moved_columns_in_project
The issue or pull request was moved between columns in a project board. このイベントは、リポジトリでプロジェクト ボードが有効 になっている� �合の応答でのみ表示されます。
Availability
Issue type Issue events API Timeline events API X X
Event object properties
注: プロジェクト カードの詳細が、プロジェクト関連の Issue およびタイ� ライン イベントの REST API 応答に示されるようになりました。 この機能は、プレビューとして開発者が利用できるようになりました。 詳細については、ブログ記事 を参照してく� さい。
project_card
属性を受け取るには、リポジトリに対してプロジェクト ボードを有効 にする必要があります。また、Accept
ヘッダーでカスタ� メディアの種類 を指定する必要があります。
application/vnd.github.starfox-preview+json
警告: この API は、プレビュー期間中は事前の通知なしに変更されることがあります。 プレビューの機能は、実稼働環境での利用はサポートされていません。 問題があった� �合には、サイト管理者にお問い合わせく� さい。
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 project_card
object
プロジェクト カード オブジェクト。 project_id
integer
プロジェクト カードの一意識別子。 project_url
string
プロジェクト カードを取得する REST API URL。 column_name
string
Issue がある列の名前。 previous_column_name
string
The name of the column the issue was moved from.
pinned
The issue was pinned.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
ready_for_review
A draft pull request was marked as ready for review.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
referenced
The issue was referenced from a commit message. The commit_id
attribute is the commit SHA1 of where that happened and the commit_repository is where that commit was pushed.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
removed_from_project
The issue or pull request was removed from a project board. このイベントは、リポジトリでプロジェクト ボードが有効 になっている� �合の応答でのみ表示されます。
Availability
Issue type Issue events API Timeline events API X X
Event object properties
注: プロジェクト カードの詳細が、プロジェクト関連の Issue およびタイ� ライン イベントの REST API 応答に示されるようになりました。 この機能は、プレビューとして開発者が利用できるようになりました。 詳細については、ブログ記事 を参照してく� さい。
project_card
属性を受け取るには、リポジトリに対してプロジェクト ボードを有効 にする必要があります。また、Accept
ヘッダーでカスタ� メディアの種類 を指定する必要があります。
application/vnd.github.starfox-preview+json
警告: この API は、プレビュー期間中は事前の通知なしに変更されることがあります。 プレビューの機能は、実稼働環境での利用はサポートされていません。 問題があった� �合には、サイト管理者にお問い合わせく� さい。
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 project_card
object
プロジェクト カード オブジェクト。 project_id
integer
プロジェクト カードの一意識別子。 project_url
string
プロジェクト カードを取得する REST API URL。 column_name
string
Issue がある列の名前。
renamed
The issue or pull request title was changed.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 rename
object
The name details. rename[from]
string
The previous name. rename[to]
string
The new name.
reopened
The issue or pull request was reopened.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
review_dismissed
The pull request review was dismissed.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 dismissed_review
object
却下されたレビューの情� �。 dismissed_review[state]
string
pull request が無視されたときの状態。 commented
、approved
、または changes_requested
のいずれかにすることができます。 dismissed_review[review_id]
string
pull request のレビューの一意の識別子。 dismissed_review[dismissal_message]
string
レビューを閉じるときにユーザーが含めるメッセージ。 dismissed_review[dismissal_commit_id]
string
レビューが存在する� �合にそれが無視されたコミットの一意識別子。
review_requested
A pull request review was requested.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 requested_reviewer
object
pull request を確認するように要求されたユーザー。 review_requester
object
レビューを要求したユーザー。
review_request_removed
A pull request review request was removed.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 requested_reviewer
object
pull request を確認するように要求されたユーザー。 review_requester
object
レビューを要求したユーザー。
reviewed
The pull request was reviewed.
Availability
Issue type Issue events API Timeline events API X
Event object properties
このイベント プロパティは、Issue イベント オブジェクトの共通プロパティ と同じ構� を使用しません。 このイベントに対しては、以下の属性が返されます。
Name Type Description id
integer
The unique identifier of the event. node_id
string
The Global Node ID of the event. user
object
The person who commented on the issue. body
string
The review summary text. commit_id
string
The SHA of the latest commit in the pull request at the time of the review. submitted_at
string
The timestamp indicating when the review was submitted. state
string
The state of the submitted review. Can be one of: commented
, changes_requested
, or approved
. html_url
string
The HTML URL of the review. pull_request_url
string
The REST API URL to retrieve the pull request. author_association
string
The permissions the user has in the issue's repository. For example, the value would be "OWNER"
if the owner of repository created a comment. _links
object
The html_url
and pull_request_url
. event
string
The event value is "reviewed"
.
subscribed
Someone subscribed to receive notifications for an issue or pull request.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
transferred
The issue was transferred to another repository.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
unassigned
A user was unassigned from the issue.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 assignee
object
この issue から割り当て解除されたユーザー。 assigner
object
この issue からの割り当て解除を実行したユーザー。
unlabeled
A label was removed from the issue.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 label
object
この issue から削除されたラベル label[name]
label[color]
string
16 進数カラー コード。
unlocked
The issue was unlocked.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。 lock_reason
string
The reason an issue or pull request conversation was locked, if one was provided.
unmarked_as_duplicate
An issue that a user had previously marked as a duplicate of another issue is no longer considered a duplicate, or a pull request that a user had previously marked as a duplicate of another pull request is no longer considered a duplicate.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
unpinned
The issue was unpinned.
Availability
Issue type Issue events API Timeline events API X X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。
unsubscribed
Someone unsubscribed from receiving notifications for an issue or pull request.
Availability
Issue type Issue events API Timeline events API X
Event object properties
名前 型 説明 id
integer
イベントの一意識別子。 node_id
string
イベントのグローバル ノード ID 。 url
string
イベントをフェッチするためのREST API URL。 actor
object
イベントを生成したユーザ。 event
string
発生したイベントの実際の種類を特定します。 commit_id
string
このIssueを参照するコミットのSHA。 commit_url
string
このIssueを参照するコミットへのGitHub REST APIリンク。 created_at
string
イベントが発生した時刻を示すタイ� スタンプ。