diff --git a/content/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect.md b/content/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect.md index 692c40ef6a..5f8df43143 100644 --- a/content/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect.md +++ b/content/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect.md @@ -250,8 +250,6 @@ curl -H "Authorization: bearer $ACTIONS_ID_TOKEN_REQUEST_TOKEN" "$ACTIONS_ID_TOK {% data reusables.actions.oidc-permissions-token %} -{% ifversion actions-oidc-hardening-config %} - ## Customizing the token claims You can security harden your OIDC configuration by customizing the claims that are included with the JWT. These customizations allow you to define more granular trust conditions on your cloud roles when allowing your workflows to access resources hosted in the cloud: @@ -476,8 +474,6 @@ To configure the repository to use the organization's template, a repository adm } ``` -{% endif %} - ## Updating your workflows for OIDC You can now update your YAML workflows to use OIDC access tokens instead of secrets. Popular cloud providers have published their official login actions that make it easy for you to get started with OIDC. For more information about updating your workflows, see the cloud-specific guides listed below in "[Enabling OpenID Connect for your cloud provider](#enabling-openid-connect-for-your-cloud-provider)." @@ -502,3 +498,7 @@ To enable and configure OIDC for your specific cloud provider, see the following To enable and configure OIDC for another cloud provider, see the following guide: - "[AUTOTITLE](/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-cloud-providers)" + +## Debugging your OIDC claims + +You can use the [`github/actions-oidc-debugger`](https://github.com/github/actions-oidc-debugger) action to visualize the claims that would be sent, before integrating with a cloud provider. This action requests a JWT and prints the claims included within the JWT that were received from {% data variables.product.prodname_actions %}. diff --git a/content/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/deploying-runner-scale-sets-with-actions-runner-controller.md b/content/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/deploying-runner-scale-sets-with-actions-runner-controller.md index fd36d5fea2..955cd3c26f 100644 --- a/content/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/deploying-runner-scale-sets-with-actions-runner-controller.md +++ b/content/actions/hosting-your-own-runners/managing-self-hosted-runners-with-actions-runner-controller/deploying-runner-scale-sets-with-actions-runner-controller.md @@ -47,6 +47,7 @@ You can deploy runner scale sets with ARC's Helm charts or by deploying the nece - Update the `NAMESPACE` value to the location you want the runner pods to be created. - Set the `GITHUB_CONFIG_URL` value to the URL of your repository, organization, or enterprise. This is the entity that the runners will belong to. - This example command installs the latest version of the Helm chart. To install a specific version, you can pass the `--version` argument with the version of the chart you want to install. You can find the list of releases in the [`actions-runner-controller`](https://github.com/actions/actions-runner-controller/pkgs/container/actions-runner-controller-charts%2Fgha-runner-scale-set) repository. + {% ifversion not ghes %} ```bash copy INSTALLATION_NAME="arc-runner-set" @@ -61,6 +62,24 @@ You can deploy runner scale sets with ARC's Helm charts or by deploying the nece oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set ``` + {% endif %} + {% ifversion ghes %} + + ```bash copy + INSTALLATION_NAME="arc-runner-set" + NAMESPACE="arc-runners" + GITHUB_CONFIG_URL="http(s):///<'enterprises/your_enterprise'/'org'/'org/repo'>" + GITHUB_PAT="" + helm install "{% raw %}${INSTALLATION_NAME}{% endraw %}" \ + --namespace "{% raw %}${NAMESPACE}{% endraw %}" \ + --create-namespace \ + --set githubConfigUrl="{% raw %}${GITHUB_CONFIG_URL}{% endraw %}" \ + --set githubConfigSecret.github_token="{% raw %}${GITHUB_PAT}{% endraw %}" \ + oci://ghcr.io/actions/actions-runner-controller-charts/gha-runner-scale-set + ``` + + {% endif %} + {% data reusables.actions.actions-runner-controller-helm-chart-options %} 1. To check your installation, run the following command in your terminal. @@ -130,10 +149,21 @@ To deploy runner scale sets to a specific level, set the value of `githubConfigU The following example shows how to configure ARC to add runners to `octo-org/octo-repo`. +{% ifversion not ghes %} + ```yaml -githubConfigUrl: "https://{% data variables.product.product_url %}/octo-ent/octo-org/octo-repo" +githubConfigUrl: "https://github.com/octo-ent/octo-org/octo-repo" ``` +{% endif %} +{% ifversion ghes %} + +```yaml +githubConfigUrl: "http(s):///<'enterprises/your_enterprise'/'org'/'org/repo'>" +``` + +{% endif %} + {% data reusables.actions.actions-runner-controller-helm-chart-options %} ### Using a {% data variables.product.prodname_github_app %} for authentication @@ -589,6 +619,7 @@ To customize the spec, comment out or remove `containerMode`, and append the con #### Example: running `dind-rootless` Before deciding to run `dind-rootless`, make sure you are aware of [known limitations](https://docs.docker.com/engine/security/rootless/#known-limitations). +{% ifversion not ghes %} ```yaml ## githubConfigUrl is the GitHub url for where you want to configure runners @@ -689,6 +720,110 @@ template: emptyDir: {} ``` +{% endif %} +{% ifversion ghes %} + +```yaml +## githubConfigUrl is the GitHub url for where you want to configure runners +## ex: https:///enterprises/my_enterprise or https:///myorg +githubConfigUrl: "https:///actions/actions-runner-controller" + +## githubConfigSecret is the k8s secrets to use when auth with GitHub API. +## You can choose to use GitHub App or a PAT token +githubConfigSecret: my-super-safe-secret + +## maxRunners is the max number of runners the autoscaling runner set will scale up to. +maxRunners: 5 + +## minRunners is the min number of idle runners. The target number of runners created will be +## calculated as a sum of minRunners and the number of jobs assigned to the scale set. +minRunners: 0 + +runnerGroup: "my-custom-runner-group" + +## name of the runner scale set to create. Defaults to the helm release name +runnerScaleSetName: "my-awesome-scale-set" + +## template is the PodSpec for each runner Pod +## For reference: https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#PodSpec +template: + spec: + initContainers: + - name: init-dind-externals + image: ghcr.io/actions/actions-runner:latest + command: ["cp", "-r", "-v", "/home/runner/externals/.", "/home/runner/tmpDir/"] + volumeMounts: + - name: dind-externals + mountPath: /home/runner/tmpDir + - name: init-dind-rootless + image: docker:dind-rootless + command: + - sh + - -c + - | + set -x + cp -a /etc/. /dind-etc/ + echo 'runner:x:1001:1001:runner:/home/runner:/bin/ash' >> /dind-etc/passwd + echo 'runner:x:1001:' >> /dind-etc/group + echo 'runner:100000:65536' >> /dind-etc/subgid + echo 'runner:100000:65536' >> /dind-etc/subuid + chmod 755 /dind-etc; + chmod u=rwx,g=rx+s,o=rx /dind-home + chown 1001:1001 /dind-home + securityContext: + runAsUser: 0 + volumeMounts: + - mountPath: /dind-etc + name: dind-etc + - mountPath: /dind-home + name: dind-home + containers: + - name: runner + image: ghcr.io/actions/actions-runner:latest + command: ["/home/runner/run.sh"] + env: + - name: DOCKER_HOST + value: unix:///var/run/docker.sock + volumeMounts: + - name: work + mountPath: /home/runner/_work + - name: dind-sock + mountPath: /var/run + - name: dind + image: docker:dind-rootless + args: + - dockerd + - --host=unix:///var/run/docker.sock + securityContext: + privileged: true + runAsUser: 1001 + runAsGroup: 1001 + volumeMounts: + - name: work + mountPath: /home/runner/_work + - name: dind-sock + mountPath: /var/run + - name: dind-externals + mountPath: /home/runner/externals + - name: dind-etc + mountPath: /etc + - name: dind-home + mountPath: /home/runner + volumes: + - name: work + emptyDir: {} + - name: dind-externals + emptyDir: {} + - name: dind-sock + emptyDir: {} + - name: dind-etc + emptyDir: {} + - name: dind-home + emptyDir: {} +``` + +{% endif %} + #### Understanding runner-container-hooks When the runner detects a workflow run that uses a container job, service container, or Docker action, it will call runner-container-hooks to create a new pod. The runner relies on runner-container-hooks to call the Kubernetes APIs and create a new pod in the same namespace as the runner pod. This newly created pod will be used to run the container job, service container, or Docker action. For more information, see the [`runner-container-hooks`](https://github.com/actions/runner-container-hooks) repository. diff --git a/data/graphql/ghec/graphql_previews.yml b/data/graphql/ghec/graphql_previews.yml index 6efdb70138..de7625bd25 100644 --- a/data/graphql/ghec/graphql_previews.yml +++ b/data/graphql/ghec/graphql_previews.yml @@ -15,20 +15,6 @@ - CreateDeploymentPayload owning_teams: - '@github/pages' -- title: >- - MergeInfoPreview - More detailed information about a pull request's merge - state. - description: >- - This preview adds support for accessing fields that provide more detailed - information about a pull request's merge state. - toggled_by: ':merge-info-preview' - announcement: null - updates: null - toggled_on: - - PullRequest.canBeRebased - - PullRequest.mergeStateStatus - owning_teams: - - '@github/pe-pull-requests' - title: UpdateRefsPreview - Update multiple refs in a single operation. description: This preview adds support for updating multiple refs in a single operation. toggled_by: ':update-refs-preview' @@ -57,53 +43,3 @@ - DependencyGraphDependencyConnection owning_teams: - '@github/dependency-graph' -- title: Project Event Details - description: >- - This preview adds project, project card, and project column details to - project-related issue events. - toggled_by: ':starfox-preview' - announcement: null - updates: null - toggled_on: - - AddedToProjectEvent.project - - AddedToProjectEvent.projectCard - - AddedToProjectEvent.projectColumnName - - ConvertedNoteToIssueEvent.project - - ConvertedNoteToIssueEvent.projectCard - - ConvertedNoteToIssueEvent.projectColumnName - - MovedColumnsInProjectEvent.project - - MovedColumnsInProjectEvent.projectCard - - MovedColumnsInProjectEvent.projectColumnName - - MovedColumnsInProjectEvent.previousProjectColumnName - - RemovedFromProjectEvent.project - - RemovedFromProjectEvent.projectColumnName - owning_teams: - - '@github/github-projects' -- title: Labels Preview - description: >- - This preview adds support for adding, updating, creating and deleting - labels. - toggled_by: ':bane-preview' - announcement: null - updates: null - toggled_on: - - Mutation.createLabel - - CreateLabelPayload - - CreateLabelInput - - Mutation.deleteLabel - - DeleteLabelPayload - - DeleteLabelInput - - Mutation.updateLabel - - UpdateLabelPayload - - UpdateLabelInput - owning_teams: - - '@github/pe-pull-requests' -- title: Import Project - description: This preview adds support for importing projects. - toggled_by: ':slothette-preview' - announcement: null - updates: null - toggled_on: - - Mutation.importProject - owning_teams: - - '@github/pe-issues-projects' diff --git a/data/graphql/ghec/schema.docs.graphql b/data/graphql/ghec/schema.docs.graphql index d6df3872ab..53ab1d1ef4 100644 --- a/data/graphql/ghec/schema.docs.graphql +++ b/data/graphql/ghec/schema.docs.graphql @@ -1160,17 +1160,17 @@ type AddedToProjectEvent implements Node { """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Project card referenced by this project event. """ - projectCard: ProjectCard @preview(toggledBy: "starfox-preview") + projectCard: ProjectCard """ Column name referenced by this project event. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -6591,17 +6591,17 @@ type ConvertedNoteToIssueEvent implements Node { """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Project card referenced by this project event. """ - projectCard: ProjectCard @preview(toggledBy: "starfox-preview") + projectCard: ProjectCard """ Column name referenced by this project event. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -7441,7 +7441,7 @@ type CreateIssuePayload { """ Autogenerated input type of CreateLabel """ -input CreateLabelInput @preview(toggledBy: "bane-preview") { +input CreateLabelInput { """ A unique identifier for the client performing the mutation. """ @@ -7471,7 +7471,7 @@ input CreateLabelInput @preview(toggledBy: "bane-preview") { """ Autogenerated return type of CreateLabel """ -type CreateLabelPayload @preview(toggledBy: "bane-preview") { +type CreateLabelPayload { """ A unique identifier for the client performing the mutation. """ @@ -9214,7 +9214,7 @@ type DeleteIssuePayload { """ Autogenerated input type of DeleteLabel """ -input DeleteLabelInput @preview(toggledBy: "bane-preview") { +input DeleteLabelInput { """ A unique identifier for the client performing the mutation. """ @@ -9229,7 +9229,7 @@ input DeleteLabelInput @preview(toggledBy: "bane-preview") { """ Autogenerated return type of DeleteLabel """ -type DeleteLabelPayload @preview(toggledBy: "bane-preview") { +type DeleteLabelPayload { """ A unique identifier for the client performing the mutation. """ @@ -21991,22 +21991,22 @@ type MovedColumnsInProjectEvent implements Node { """ Column name the issue or pull request was moved from. """ - previousProjectColumnName: String! @preview(toggledBy: "starfox-preview") + previousProjectColumnName: String! """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Project card referenced by this project event. """ - projectCard: ProjectCard @preview(toggledBy: "starfox-preview") + projectCard: ProjectCard """ Column name the issue or pull request was moved to. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -22589,7 +22589,7 @@ type Mutation { Parameters for CreateLabel """ input: CreateLabelInput! - ): CreateLabelPayload @preview(toggledBy: "bane-preview") + ): CreateLabelPayload """ Create a branch linked to an issue. @@ -22850,7 +22850,7 @@ type Mutation { Parameters for DeleteLabel """ input: DeleteLabelInput! - ): DeleteLabelPayload @preview(toggledBy: "bane-preview") + ): DeleteLabelPayload """ Unlink a branch from an issue. @@ -23130,7 +23130,7 @@ type Mutation { Parameters for ImportProject """ input: ImportProjectInput! - ): ImportProjectPayload @preview(toggledBy: "slothette-preview") + ): ImportProjectPayload """ Invite someone to become an administrator of the enterprise. @@ -23353,7 +23353,8 @@ type Mutation { ): RemoveEnterpriseAdminPayload """ - Removes the identity provider from an enterprise + Removes the identity provider from an enterprise. Owners of enterprises both + with and without Enterprise Managed Users may use this mutation. """ removeEnterpriseIdentityProvider( """ @@ -24080,7 +24081,7 @@ type Mutation { Parameters for UpdateLabel """ input: UpdateLabelInput! - ): UpdateLabelPayload @preview(toggledBy: "bane-preview") + ): UpdateLabelPayload """ Update the setting to restrict notifications to only verified or approved domains available to an owner. @@ -35217,7 +35218,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab """ Whether or not the pull request is rebaseable. """ - canBeRebased: Boolean! @preview(toggledBy: "merge-info-preview") + canBeRebased: Boolean! """ The number of changed files in this pull request. @@ -35580,7 +35581,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab """ Detailed information about the current pull request merge state status. """ - mergeStateStatus: MergeStateStatus! @preview(toggledBy: "merge-info-preview") + mergeStateStatus: MergeStateStatus! """ Whether or not the pull request can be merged based on the existence of merge conflicts. @@ -40630,12 +40631,12 @@ type RemovedFromProjectEvent implements Node { """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Column name referenced by this project event. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -52379,7 +52380,7 @@ input StartRepositoryMigrationInput { """ The URL of the source repository. """ - sourceRepositoryUrl: URI + sourceRepositoryUrl: URI! """ The visibility of the imported repository. @@ -57918,7 +57919,7 @@ type UpdateIssuePayload { """ Autogenerated input type of UpdateLabel """ -input UpdateLabelInput @preview(toggledBy: "bane-preview") { +input UpdateLabelInput { """ A unique identifier for the client performing the mutation. """ @@ -57948,7 +57949,7 @@ input UpdateLabelInput @preview(toggledBy: "bane-preview") { """ Autogenerated return type of UpdateLabel """ -type UpdateLabelPayload @preview(toggledBy: "bane-preview") { +type UpdateLabelPayload { """ A unique identifier for the client performing the mutation. """ diff --git a/data/graphql/graphql_previews.yml b/data/graphql/graphql_previews.yml index 6efdb70138..de7625bd25 100644 --- a/data/graphql/graphql_previews.yml +++ b/data/graphql/graphql_previews.yml @@ -15,20 +15,6 @@ - CreateDeploymentPayload owning_teams: - '@github/pages' -- title: >- - MergeInfoPreview - More detailed information about a pull request's merge - state. - description: >- - This preview adds support for accessing fields that provide more detailed - information about a pull request's merge state. - toggled_by: ':merge-info-preview' - announcement: null - updates: null - toggled_on: - - PullRequest.canBeRebased - - PullRequest.mergeStateStatus - owning_teams: - - '@github/pe-pull-requests' - title: UpdateRefsPreview - Update multiple refs in a single operation. description: This preview adds support for updating multiple refs in a single operation. toggled_by: ':update-refs-preview' @@ -57,53 +43,3 @@ - DependencyGraphDependencyConnection owning_teams: - '@github/dependency-graph' -- title: Project Event Details - description: >- - This preview adds project, project card, and project column details to - project-related issue events. - toggled_by: ':starfox-preview' - announcement: null - updates: null - toggled_on: - - AddedToProjectEvent.project - - AddedToProjectEvent.projectCard - - AddedToProjectEvent.projectColumnName - - ConvertedNoteToIssueEvent.project - - ConvertedNoteToIssueEvent.projectCard - - ConvertedNoteToIssueEvent.projectColumnName - - MovedColumnsInProjectEvent.project - - MovedColumnsInProjectEvent.projectCard - - MovedColumnsInProjectEvent.projectColumnName - - MovedColumnsInProjectEvent.previousProjectColumnName - - RemovedFromProjectEvent.project - - RemovedFromProjectEvent.projectColumnName - owning_teams: - - '@github/github-projects' -- title: Labels Preview - description: >- - This preview adds support for adding, updating, creating and deleting - labels. - toggled_by: ':bane-preview' - announcement: null - updates: null - toggled_on: - - Mutation.createLabel - - CreateLabelPayload - - CreateLabelInput - - Mutation.deleteLabel - - DeleteLabelPayload - - DeleteLabelInput - - Mutation.updateLabel - - UpdateLabelPayload - - UpdateLabelInput - owning_teams: - - '@github/pe-pull-requests' -- title: Import Project - description: This preview adds support for importing projects. - toggled_by: ':slothette-preview' - announcement: null - updates: null - toggled_on: - - Mutation.importProject - owning_teams: - - '@github/pe-issues-projects' diff --git a/data/graphql/schema.docs.graphql b/data/graphql/schema.docs.graphql index d6df3872ab..53ab1d1ef4 100644 --- a/data/graphql/schema.docs.graphql +++ b/data/graphql/schema.docs.graphql @@ -1160,17 +1160,17 @@ type AddedToProjectEvent implements Node { """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Project card referenced by this project event. """ - projectCard: ProjectCard @preview(toggledBy: "starfox-preview") + projectCard: ProjectCard """ Column name referenced by this project event. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -6591,17 +6591,17 @@ type ConvertedNoteToIssueEvent implements Node { """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Project card referenced by this project event. """ - projectCard: ProjectCard @preview(toggledBy: "starfox-preview") + projectCard: ProjectCard """ Column name referenced by this project event. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -7441,7 +7441,7 @@ type CreateIssuePayload { """ Autogenerated input type of CreateLabel """ -input CreateLabelInput @preview(toggledBy: "bane-preview") { +input CreateLabelInput { """ A unique identifier for the client performing the mutation. """ @@ -7471,7 +7471,7 @@ input CreateLabelInput @preview(toggledBy: "bane-preview") { """ Autogenerated return type of CreateLabel """ -type CreateLabelPayload @preview(toggledBy: "bane-preview") { +type CreateLabelPayload { """ A unique identifier for the client performing the mutation. """ @@ -9214,7 +9214,7 @@ type DeleteIssuePayload { """ Autogenerated input type of DeleteLabel """ -input DeleteLabelInput @preview(toggledBy: "bane-preview") { +input DeleteLabelInput { """ A unique identifier for the client performing the mutation. """ @@ -9229,7 +9229,7 @@ input DeleteLabelInput @preview(toggledBy: "bane-preview") { """ Autogenerated return type of DeleteLabel """ -type DeleteLabelPayload @preview(toggledBy: "bane-preview") { +type DeleteLabelPayload { """ A unique identifier for the client performing the mutation. """ @@ -21991,22 +21991,22 @@ type MovedColumnsInProjectEvent implements Node { """ Column name the issue or pull request was moved from. """ - previousProjectColumnName: String! @preview(toggledBy: "starfox-preview") + previousProjectColumnName: String! """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Project card referenced by this project event. """ - projectCard: ProjectCard @preview(toggledBy: "starfox-preview") + projectCard: ProjectCard """ Column name the issue or pull request was moved to. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -22589,7 +22589,7 @@ type Mutation { Parameters for CreateLabel """ input: CreateLabelInput! - ): CreateLabelPayload @preview(toggledBy: "bane-preview") + ): CreateLabelPayload """ Create a branch linked to an issue. @@ -22850,7 +22850,7 @@ type Mutation { Parameters for DeleteLabel """ input: DeleteLabelInput! - ): DeleteLabelPayload @preview(toggledBy: "bane-preview") + ): DeleteLabelPayload """ Unlink a branch from an issue. @@ -23130,7 +23130,7 @@ type Mutation { Parameters for ImportProject """ input: ImportProjectInput! - ): ImportProjectPayload @preview(toggledBy: "slothette-preview") + ): ImportProjectPayload """ Invite someone to become an administrator of the enterprise. @@ -23353,7 +23353,8 @@ type Mutation { ): RemoveEnterpriseAdminPayload """ - Removes the identity provider from an enterprise + Removes the identity provider from an enterprise. Owners of enterprises both + with and without Enterprise Managed Users may use this mutation. """ removeEnterpriseIdentityProvider( """ @@ -24080,7 +24081,7 @@ type Mutation { Parameters for UpdateLabel """ input: UpdateLabelInput! - ): UpdateLabelPayload @preview(toggledBy: "bane-preview") + ): UpdateLabelPayload """ Update the setting to restrict notifications to only verified or approved domains available to an owner. @@ -35217,7 +35218,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab """ Whether or not the pull request is rebaseable. """ - canBeRebased: Boolean! @preview(toggledBy: "merge-info-preview") + canBeRebased: Boolean! """ The number of changed files in this pull request. @@ -35580,7 +35581,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab """ Detailed information about the current pull request merge state status. """ - mergeStateStatus: MergeStateStatus! @preview(toggledBy: "merge-info-preview") + mergeStateStatus: MergeStateStatus! """ Whether or not the pull request can be merged based on the existence of merge conflicts. @@ -40630,12 +40631,12 @@ type RemovedFromProjectEvent implements Node { """ Project referenced by event. """ - project: Project @preview(toggledBy: "starfox-preview") + project: Project """ Column name referenced by this project event. """ - projectColumnName: String! @preview(toggledBy: "starfox-preview") + projectColumnName: String! } """ @@ -52379,7 +52380,7 @@ input StartRepositoryMigrationInput { """ The URL of the source repository. """ - sourceRepositoryUrl: URI + sourceRepositoryUrl: URI! """ The visibility of the imported repository. @@ -57918,7 +57919,7 @@ type UpdateIssuePayload { """ Autogenerated input type of UpdateLabel """ -input UpdateLabelInput @preview(toggledBy: "bane-preview") { +input UpdateLabelInput { """ A unique identifier for the client performing the mutation. """ @@ -57948,7 +57949,7 @@ input UpdateLabelInput @preview(toggledBy: "bane-preview") { """ Autogenerated return type of UpdateLabel """ -type UpdateLabelPayload @preview(toggledBy: "bane-preview") { +type UpdateLabelPayload { """ A unique identifier for the client performing the mutation. """ diff --git a/src/audit-logs/data/fpt/organization.json b/src/audit-logs/data/fpt/organization.json index 80c454bf71..9a59087487 100644 --- a/src/audit-logs/data/fpt/organization.json +++ b/src/audit-logs/data/fpt/organization.json @@ -1619,8 +1619,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1694,8 +1694,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1759,8 +1759,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -3360,6 +3360,68 @@ "actor_is_bot" ] }, + { + "action": "network_configuration.create", + "description": "A network configuration for a hosted compute service was created.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "selected_service", + "network_settings_ids", + "previous_settings_ids", + "network_configuration_id" + ] + }, + { + "action": "network_configuration.delete", + "description": "A network configuration for a hosted compute service was deleted.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "network_configuration_id" + ] + }, + { + "action": "network_configuration.update", + "description": "A network configuration for a hosted compute service was updated.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "selected_service", + "network_settings_ids", + "previous_settings_ids" + ] + }, { "action": "oauth_application.create", "description": "An OAuth application was created.", @@ -4338,7 +4400,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -4356,8 +4418,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -4375,7 +4437,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -5079,8 +5141,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -5098,8 +5160,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -5137,7 +5199,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -5378,7 +5440,8 @@ "_document_id", "runner_group_restricted_to_workflows", "runner_group_selected_workflow_refs", - "programmatic_access_type" + "programmatic_access_type", + "network_configuration_id" ] }, { @@ -5505,7 +5568,8 @@ "_document_id", "runner_group_restricted_to_workflows", "runner_group_selected_workflow_refs", - "programmatic_access_type" + "programmatic_access_type", + "network_configuration_id" ] }, { @@ -6163,8 +6227,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -6205,8 +6269,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -6244,7 +6308,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -9203,7 +9267,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -9222,8 +9286,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -9246,7 +9310,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -9541,7 +9605,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -9562,8 +9626,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -9585,7 +9649,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -10053,8 +10117,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -10103,8 +10167,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -10150,7 +10214,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -11603,7 +11667,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -11625,7 +11689,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "user_agent", diff --git a/src/audit-logs/data/fpt/user.json b/src/audit-logs/data/fpt/user.json index 6fc1f4aaf1..64d94d69cd 100644 --- a/src/audit-logs/data/fpt/user.json +++ b/src/audit-logs/data/fpt/user.json @@ -1096,8 +1096,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1171,8 +1171,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1236,8 +1236,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -4191,7 +4191,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -4210,8 +4210,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -4234,7 +4234,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -4505,7 +4505,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -4526,8 +4526,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -4549,7 +4549,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -4964,8 +4964,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -5014,8 +5014,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -5061,7 +5061,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", diff --git a/src/audit-logs/data/ghec/enterprise.json b/src/audit-logs/data/ghec/enterprise.json index 59e7ab8301..d0b42211fd 100644 --- a/src/audit-logs/data/ghec/enterprise.json +++ b/src/audit-logs/data/ghec/enterprise.json @@ -4017,7 +4017,8 @@ "created_at", "_document_id", "runner_group_restricted_to_workflows", - "runner_group_selected_workflow_refs" + "runner_group_selected_workflow_refs", + "network_configuration_id" ] }, { @@ -4301,8 +4302,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -4376,8 +4377,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -4441,8 +4442,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -6347,6 +6348,68 @@ "actor_is_bot" ] }, + { + "action": "network_configuration.create", + "description": "A network configuration for a hosted compute service was created.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "selected_service", + "network_settings_ids", + "previous_settings_ids", + "network_configuration_id" + ] + }, + { + "action": "network_configuration.delete", + "description": "A network configuration for a hosted compute service was deleted.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "network_configuration_id" + ] + }, + { + "action": "network_configuration.update", + "description": "A network configuration for a hosted compute service was updated.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "selected_service", + "network_settings_ids", + "previous_settings_ids" + ] + }, { "action": "oauth_application.create", "description": "An OAuth application was created.", @@ -7257,7 +7320,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -7275,8 +7338,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -7294,7 +7357,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -7956,8 +8019,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -7975,8 +8038,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -8014,7 +8077,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -8217,7 +8280,8 @@ "_document_id", "runner_group_restricted_to_workflows", "runner_group_selected_workflow_refs", - "programmatic_access_type" + "programmatic_access_type", + "network_configuration_id" ] }, { @@ -8344,7 +8408,8 @@ "_document_id", "runner_group_restricted_to_workflows", "runner_group_selected_workflow_refs", - "programmatic_access_type" + "programmatic_access_type", + "network_configuration_id" ] }, { @@ -8985,8 +9050,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -9027,8 +9092,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -9066,7 +9131,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -11963,7 +12028,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -11982,8 +12047,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -12006,7 +12071,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -12301,7 +12366,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -12322,8 +12387,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -12345,7 +12410,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -12835,8 +12900,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -12885,8 +12950,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -12932,7 +12997,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -14385,7 +14450,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -14407,7 +14472,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "user_agent", diff --git a/src/audit-logs/data/ghec/organization.json b/src/audit-logs/data/ghec/organization.json index 80c454bf71..9a59087487 100644 --- a/src/audit-logs/data/ghec/organization.json +++ b/src/audit-logs/data/ghec/organization.json @@ -1619,8 +1619,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1694,8 +1694,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1759,8 +1759,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -3360,6 +3360,68 @@ "actor_is_bot" ] }, + { + "action": "network_configuration.create", + "description": "A network configuration for a hosted compute service was created.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "selected_service", + "network_settings_ids", + "previous_settings_ids", + "network_configuration_id" + ] + }, + { + "action": "network_configuration.delete", + "description": "A network configuration for a hosted compute service was deleted.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "network_configuration_id" + ] + }, + { + "action": "network_configuration.update", + "description": "A network configuration for a hosted compute service was updated.", + "docs_reference_links": "/admin/configuration/configuring-private-networking-for-hosted-compute-products/about-networking-for-hosted-compute-products", + "fields": [ + "actor", + "actor_id", + "user_agent", + "business", + "business_id", + "action", + "_document_id", + "@timestamp", + "created_at", + "operation_type", + "actor_is_bot", + "selected_service", + "network_settings_ids", + "previous_settings_ids" + ] + }, { "action": "oauth_application.create", "description": "An OAuth application was created.", @@ -4338,7 +4400,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -4356,8 +4418,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -4375,7 +4437,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -5079,8 +5141,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -5098,8 +5160,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -5137,7 +5199,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -5378,7 +5440,8 @@ "_document_id", "runner_group_restricted_to_workflows", "runner_group_selected_workflow_refs", - "programmatic_access_type" + "programmatic_access_type", + "network_configuration_id" ] }, { @@ -5505,7 +5568,8 @@ "_document_id", "runner_group_restricted_to_workflows", "runner_group_selected_workflow_refs", - "programmatic_access_type" + "programmatic_access_type", + "network_configuration_id" ] }, { @@ -6163,8 +6227,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "user_agent", "actor", @@ -6205,8 +6269,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "actor", "actor_id", @@ -6244,7 +6308,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -9203,7 +9267,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -9222,8 +9286,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -9246,7 +9310,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -9541,7 +9605,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -9562,8 +9626,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -9585,7 +9649,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -10053,8 +10117,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -10103,8 +10167,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -10150,7 +10214,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -11603,7 +11667,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -11625,7 +11689,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "user_agent", diff --git a/src/audit-logs/data/ghec/user.json b/src/audit-logs/data/ghec/user.json index 6fc1f4aaf1..64d94d69cd 100644 --- a/src/audit-logs/data/ghec/user.json +++ b/src/audit-logs/data/ghec/user.json @@ -1096,8 +1096,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1171,8 +1171,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -1236,8 +1236,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "actor", "actor_id", @@ -4191,7 +4191,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -4210,8 +4210,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -4234,7 +4234,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -4505,7 +4505,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -4526,8 +4526,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -4549,7 +4549,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", @@ -4964,8 +4964,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "user_agent", "actor", @@ -5014,8 +5014,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "actor", "actor_id", @@ -5061,7 +5061,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "user_agent", diff --git a/src/audit-logs/data/ghes-3.10/enterprise.json b/src/audit-logs/data/ghes-3.10/enterprise.json index ee7ea638b9..ad9193e01e 100644 --- a/src/audit-logs/data/ghes-3.10/enterprise.json +++ b/src/audit-logs/data/ghes-3.10/enterprise.json @@ -21835,8 +21835,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -22381,8 +22381,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -22927,8 +22927,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -75240,7 +75240,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -75421,8 +75421,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -75603,7 +75603,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -78698,7 +78698,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -78879,8 +78879,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -79061,7 +79061,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -83415,8 +83415,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -83779,8 +83779,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -84143,7 +84143,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -88535,7 +88535,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -88717,7 +88717,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.10/organization.json b/src/audit-logs/data/ghes-3.10/organization.json index a3063e45da..68fcf070fd 100644 --- a/src/audit-logs/data/ghes-3.10/organization.json +++ b/src/audit-logs/data/ghes-3.10/organization.json @@ -10919,8 +10919,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -11465,8 +11465,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -12011,8 +12011,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -33205,7 +33205,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -33386,8 +33386,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -33568,7 +33568,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -38838,8 +38838,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -39020,8 +39020,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -39384,7 +39384,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -48109,8 +48109,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -48473,8 +48473,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -48837,7 +48837,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -73411,7 +73411,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -73592,8 +73592,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -73774,7 +73774,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -75959,7 +75959,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -76140,8 +76140,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -76322,7 +76322,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -80312,8 +80312,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -80676,8 +80676,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -81040,7 +81040,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -91798,7 +91798,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -91980,7 +91980,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.10/user.json b/src/audit-logs/data/ghes-3.10/user.json index 965f5791df..08a70eac66 100644 --- a/src/audit-logs/data/ghes-3.10/user.json +++ b/src/audit-logs/data/ghes-3.10/user.json @@ -8729,8 +8729,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -9275,8 +9275,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -9821,8 +9821,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -36391,7 +36391,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -36572,8 +36572,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -36754,7 +36754,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -38757,7 +38757,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -38938,8 +38938,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -39120,7 +39120,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -42749,8 +42749,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -43113,8 +43113,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -43477,7 +43477,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.11/enterprise.json b/src/audit-logs/data/ghes-3.11/enterprise.json index 0ae5e0b089..f63d3acbb2 100644 --- a/src/audit-logs/data/ghes-3.11/enterprise.json +++ b/src/audit-logs/data/ghes-3.11/enterprise.json @@ -23628,8 +23628,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -24177,8 +24177,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -24726,8 +24726,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -77873,7 +77873,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -78055,8 +78055,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -78238,7 +78238,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -81350,7 +81350,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -81532,8 +81532,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -81715,7 +81715,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -85906,8 +85906,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -86272,8 +86272,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -86638,7 +86638,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -91788,7 +91788,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -91971,7 +91971,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.11/organization.json b/src/audit-logs/data/ghes-3.11/organization.json index decfc25dec..2aeeb85d4d 100644 --- a/src/audit-logs/data/ghes-3.11/organization.json +++ b/src/audit-logs/data/ghes-3.11/organization.json @@ -12662,8 +12662,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -13211,8 +13211,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -13760,8 +13760,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -36171,7 +36171,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -36353,8 +36353,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -36536,7 +36536,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -42197,8 +42197,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -42380,8 +42380,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -42746,7 +42746,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -52249,8 +52249,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -52615,8 +52615,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -52981,7 +52981,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -78603,7 +78603,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -78785,8 +78785,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -78968,7 +78968,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -81165,7 +81165,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -81347,8 +81347,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -81530,7 +81530,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -85538,8 +85538,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -85904,8 +85904,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -86270,7 +86270,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -98187,7 +98187,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -98370,7 +98370,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.11/user.json b/src/audit-logs/data/ghes-3.11/user.json index 985f0ac800..dc928598df 100644 --- a/src/audit-logs/data/ghes-3.11/user.json +++ b/src/audit-logs/data/ghes-3.11/user.json @@ -10084,8 +10084,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -10633,8 +10633,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -11182,8 +11182,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -37896,7 +37896,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -38078,8 +38078,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -38261,7 +38261,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -40275,7 +40275,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -40457,8 +40457,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -40640,7 +40640,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -44102,8 +44102,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -44468,8 +44468,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -44834,7 +44834,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.12/enterprise.json b/src/audit-logs/data/ghes-3.12/enterprise.json index bfe82e66c4..28cf31a5a0 100644 --- a/src/audit-logs/data/ghes-3.12/enterprise.json +++ b/src/audit-logs/data/ghes-3.12/enterprise.json @@ -24759,8 +24759,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -25308,8 +25308,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -25857,8 +25857,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -79004,7 +79004,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -79186,8 +79186,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -79369,7 +79369,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -82846,7 +82846,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -83028,8 +83028,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -83211,7 +83211,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -87402,8 +87402,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -87768,8 +87768,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -88134,7 +88134,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -93284,7 +93284,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -93467,7 +93467,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.12/organization.json b/src/audit-logs/data/ghes-3.12/organization.json index 10d29eae1d..415a8f16d0 100644 --- a/src/audit-logs/data/ghes-3.12/organization.json +++ b/src/audit-logs/data/ghes-3.12/organization.json @@ -13974,8 +13974,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -14523,8 +14523,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -15072,8 +15072,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -37483,7 +37483,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -37665,8 +37665,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -37848,7 +37848,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -44605,8 +44605,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -44788,8 +44788,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -45154,7 +45154,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -54657,8 +54657,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -55023,8 +55023,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -55389,7 +55389,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -81375,7 +81375,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -81557,8 +81557,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -81740,7 +81740,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -84302,7 +84302,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -84484,8 +84484,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -84667,7 +84667,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -88675,8 +88675,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -89041,8 +89041,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -89407,7 +89407,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -101324,7 +101324,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -101507,7 +101507,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.12/user.json b/src/audit-logs/data/ghes-3.12/user.json index c23dbc81c6..fdba42feff 100644 --- a/src/audit-logs/data/ghes-3.12/user.json +++ b/src/audit-logs/data/ghes-3.12/user.json @@ -10084,8 +10084,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -10633,8 +10633,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -11182,8 +11182,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -37895,7 +37895,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -38077,8 +38077,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -38260,7 +38260,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -40639,7 +40639,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -40821,8 +40821,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -41004,7 +41004,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -44466,8 +44466,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -44832,8 +44832,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -45198,7 +45198,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.13/enterprise.json b/src/audit-logs/data/ghes-3.13/enterprise.json index 59934f7090..1910c133eb 100644 --- a/src/audit-logs/data/ghes-3.13/enterprise.json +++ b/src/audit-logs/data/ghes-3.13/enterprise.json @@ -25810,8 +25810,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -26362,8 +26362,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -26914,8 +26914,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -80535,7 +80535,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -80718,8 +80718,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -80902,7 +80902,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -84398,7 +84398,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -84581,8 +84581,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -84765,7 +84765,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -88979,8 +88979,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -89347,8 +89347,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -89715,7 +89715,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -94893,7 +94893,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -95077,7 +95077,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.13/organization.json b/src/audit-logs/data/ghes-3.13/organization.json index ea04029c7e..bbdbf7ac02 100644 --- a/src/audit-logs/data/ghes-3.13/organization.json +++ b/src/audit-logs/data/ghes-3.13/organization.json @@ -14959,8 +14959,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -15511,8 +15511,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -16063,8 +16063,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -38961,7 +38961,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -39144,8 +39144,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -39328,7 +39328,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -46122,8 +46122,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -46306,8 +46306,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -46674,7 +46674,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -56229,8 +56229,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -56597,8 +56597,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -56965,7 +56965,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -83093,7 +83093,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -83276,8 +83276,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -83460,7 +83460,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -86036,7 +86036,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -86219,8 +86219,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -86403,7 +86403,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -90433,8 +90433,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -90801,8 +90801,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -91169,7 +91169,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -103151,7 +103151,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -103335,7 +103335,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.13/user.json b/src/audit-logs/data/ghes-3.13/user.json index 4a13cf4507..57fdf86775 100644 --- a/src/audit-logs/data/ghes-3.13/user.json +++ b/src/audit-logs/data/ghes-3.13/user.json @@ -10319,8 +10319,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -10871,8 +10871,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -11423,8 +11423,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -38650,7 +38650,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -38833,8 +38833,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -39017,7 +39017,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -41409,7 +41409,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -41592,8 +41592,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -41776,7 +41776,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -45257,8 +45257,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -45625,8 +45625,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -45993,7 +45993,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.9/enterprise.json b/src/audit-logs/data/ghes-3.9/enterprise.json index 2e82fc6b6a..d2e4e654d9 100644 --- a/src/audit-logs/data/ghes-3.9/enterprise.json +++ b/src/audit-logs/data/ghes-3.9/enterprise.json @@ -20038,8 +20038,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -20551,8 +20551,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -21064,8 +21064,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -69025,7 +69025,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -69195,8 +69195,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -69366,7 +69366,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -72274,7 +72274,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -72444,8 +72444,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -72615,7 +72615,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -76542,8 +76542,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -76884,8 +76884,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -77226,7 +77226,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -80642,7 +80642,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -80813,7 +80813,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.9/organization.json b/src/audit-logs/data/ghes-3.9/organization.json index 6727982f97..6f5b29b82b 100644 --- a/src/audit-logs/data/ghes-3.9/organization.json +++ b/src/audit-logs/data/ghes-3.9/organization.json @@ -10261,8 +10261,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -10774,8 +10774,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -11287,8 +11287,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -31036,7 +31036,7 @@ { "action": "org.create_actions_secret", "description": "A GitHub Actions secret was created for an organization.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-an-organization", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -31206,8 +31206,8 @@ }, { "action": "org.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -31377,7 +31377,7 @@ }, { "action": "org.create_integration_secret", - "description": "An integration secret was created for an organization.", + "description": "A Codespaces or Dependabot secret was created for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -36330,8 +36330,8 @@ }, { "action": "org.remove_actions_secret", - "description": "A GitHub Actions secret was removed.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was removed from an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -36501,8 +36501,8 @@ }, { "action": "org.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was removed from an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -36843,7 +36843,7 @@ }, { "action": "org.remove_integration_secret", - "description": "An integration secret was removed from an organization.", + "description": "A Codespaces or Dependabot secret was removed from an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -44704,8 +44704,8 @@ }, { "action": "org.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for an organization.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -45046,8 +45046,8 @@ }, { "action": "org.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for an organization.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization", "fields": [ "@timestamp", "_document_id", @@ -45388,7 +45388,7 @@ }, { "action": "org.update_integration_secret", - "description": "An integration secret was updated for an organization.", + "description": "A Codespaces or Dependabot secret was updated for an organization.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -68306,7 +68306,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -68476,8 +68476,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -68647,7 +68647,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -70700,7 +70700,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -70870,8 +70870,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -71041,7 +71041,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -74797,8 +74797,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -75139,8 +75139,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -75481,7 +75481,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -84194,7 +84194,7 @@ }, { "action": "secret_scanning_alert.reopen", - "description": "A secret scanning alert was reopened.", + "description": "A seret scanning alert was reopened.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -84365,7 +84365,7 @@ }, { "action": "secret_scanning_alert.resolve", - "description": "A secret scanning alert was resolved.", + "description": "A seret scanning alert was resolved.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/data/ghes-3.9/user.json b/src/audit-logs/data/ghes-3.9/user.json index b24d213077..420e8bb635 100644 --- a/src/audit-logs/data/ghes-3.9/user.json +++ b/src/audit-logs/data/ghes-3.9/user.json @@ -8209,8 +8209,8 @@ }, { "action": "environment.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was created for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -8722,8 +8722,8 @@ }, { "action": "environment.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was deleted for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -9235,8 +9235,8 @@ }, { "action": "environment.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A variable was updated for a GitHub Actions environment.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-an-environment", "fields": [ "@timestamp", "_document_id", @@ -33342,7 +33342,7 @@ { "action": "repo.create_actions_secret", "description": "A GitHub Actions secret was created for a repository.", - "docs_reference_links": "/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -33512,8 +33512,8 @@ }, { "action": "repo.create_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was created for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -33683,7 +33683,7 @@ }, { "action": "repo.create_integration_secret", - "description": "An integration secret was created for a repository.", + "description": "A Codespaces or Dependabot secret was created for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -35565,7 +35565,7 @@ { "action": "repo.remove_actions_secret", "description": "A GitHub Actions secret was deleted for a repository.", - "docs_reference_links": "N/A", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -35735,8 +35735,8 @@ }, { "action": "repo.remove_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was deleted for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -35906,7 +35906,7 @@ }, { "action": "repo.remove_integration_secret", - "description": "An integration secret was deleted for a repository.", + "description": "A Codespaces or Dependabot secret was deleted for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", @@ -39152,8 +39152,8 @@ }, { "action": "repo.update_actions_secret", - "description": "A GitHub Actions secret was updated.", - "docs_reference_links": "N/A", + "description": "A GitHub Actions secret was updated for a repository.", + "docs_reference_links": "/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -39494,8 +39494,8 @@ }, { "action": "repo.update_actions_variable", - "description": "N/A", - "docs_reference_links": "N/A", + "description": "A GitHub Actions variable was updated for a repository.", + "docs_reference_links": "/actions/learn-github-actions/variables#creating-configuration-variables-for-a-repository", "fields": [ "@timestamp", "_document_id", @@ -39836,7 +39836,7 @@ }, { "action": "repo.update_integration_secret", - "description": "An integration secret was updated for a repository.", + "description": "A Codespaces or Dependabot secret was updated for a repository.", "docs_reference_links": "N/A", "fields": [ "@timestamp", diff --git a/src/audit-logs/lib/config.json b/src/audit-logs/lib/config.json index 6d45e32ef5..625087cb03 100644 --- a/src/audit-logs/lib/config.json +++ b/src/audit-logs/lib/config.json @@ -3,5 +3,5 @@ "apiOnlyEvents": "This event is not available in the web interface, only via the REST API, audit log streaming, or JSON/CSV exports.", "apiRequestEvent": "This event is only available via audit log streaming." }, - "sha": "1db62f103ebb059e35cb260a4cce39def3fd8263" + "sha": "671d4e145e953b638dd5e8bf80b0d8219a50321c" } \ No newline at end of file diff --git a/src/frame/stylesheets/scroll-button.scss b/src/frame/components/ui/ScrollButton/ScrollButton.module.scss similarity index 55% rename from src/frame/stylesheets/scroll-button.scss rename to src/frame/components/ui/ScrollButton/ScrollButton.module.scss index d2ac8669de..ab9098b5e2 100644 --- a/src/frame/stylesheets/scroll-button.scss +++ b/src/frame/components/ui/ScrollButton/ScrollButton.module.scss @@ -1,11 +1,11 @@ -.transition-200 { +.transition200 { transition: 200ms; } -.opacity-0 { +.opacity0 { opacity: 0; } -.opacity-100 { +.opacity100 { opacity: 1; } diff --git a/src/frame/components/ui/ScrollButton/ScrollButton.tsx b/src/frame/components/ui/ScrollButton/ScrollButton.tsx index f2cbf57332..7746f88e68 100644 --- a/src/frame/components/ui/ScrollButton/ScrollButton.tsx +++ b/src/frame/components/ui/ScrollButton/ScrollButton.tsx @@ -1,6 +1,9 @@ import { useState, useEffect } from 'react' import cx from 'classnames' import { ChevronUpIcon } from '@primer/octicons-react' +import styles from './ScrollButton.module.scss' + +const { transition200, opacity0, opacity100 } = styles export type ScrollButtonPropsT = { className?: string @@ -36,10 +39,7 @@ export const ScrollButton = ({ className, ariaLabel }: ScrollButtonPropsT) => { } return ( -
+