Skip to content

Panchofrancisco1987 UI patch 1#3360

Open
panchofrancisco1987-ui wants to merge 13 commits into
actions:mainfrom
panchofrancisco1987-ui:panchofrancisco1987-ui-patch-1
Open

Panchofrancisco1987 UI patch 1#3360
panchofrancisco1987-ui wants to merge 13 commits into
actions:mainfrom
panchofrancisco1987-ui:panchofrancisco1987-ui-patch-1

Conversation

@panchofrancisco1987-ui

@panchofrancisco1987-ui panchofrancisco1987-ui commented Jul 8, 2026

Copy link
Copy Markdown

Pre-requisites

  • Prior to submitting a new workflow, please apply to join the GitHub Technology Partner Program: partner.github.com/apply.

Please note that at this time we are only accepting new starter workflows for Code Scanning. Updates to existing starter workflows are fine.


Tasks

For all workflows, the workflow:

  • Should be contained in a .yml file with the language or platform as its filename, in lower, kebab-cased format (for example, docker-image.yml). Special characters should be removed or replaced with words as appropriate (for example, "dotnet" instead of ".NET").
  • Should use sentence case for the names of workflows and steps (for example, "Run tests").
  • Should be named only by the name of the language or platform (for example, "Go", not "Go CI" or "Go Build").
  • Should include comments in the workflow for any parts that are not obvious or could use clarification.
  • Should specify least privileged permissions for GITHUB_TOKEN so that the workflow runs successfully.

For CI workflows, the workflow:

  • Should be preserved under the ci directory.
  • Should include a matching ci/properties/*.properties.json file (for example, ci/properties/docker-publish.properties.json).
  • Should run on push to branches: [ $default-branch ] and pull_request to branches: [ $default-branch ].
  • Packaging workflows should run on release with types: [ created ].
  • Publishing workflows should have a filename that is the name of the language or platform, in lower case, followed by "-publish" (for example, docker-publish.yml).

For Code Scanning workflows, the workflow:

  • Should be preserved under the code-scanning directory.
  • Should include a matching code-scanning/properties/*.properties.json file (for example, code-scanning/properties/codeql.properties.json), with properties set as follows:
    • name: Name of the Code Scanning integration.
    • creator: Name of the organization/user producing the Code Scanning integration.
    • description: Short description of the Code Scanning integration.
    • categories: Array of languages supported by the Code Scanning integration.
    • iconName: Name of the SVG logo representing the Code Scanning integration. This SVG logo must be present in the icons directory.
  • Should run on push to branches: [ $default-branch, $protected-branches ] and pull_request to branches: [ $default-branch ]. We also recommend a schedule trigger of cron: $cron-weekly (for example, codeql.yml).

Some general notes:

  • This workflow must only use actions that are produced by GitHub, in the actions organization, or
  • This workflow must only use actions that are produced by the language or ecosystem that the workflow supports. These actions must be published to the GitHub Marketplace. We require that these actions be referenced using the full 40 character hash of the action's commit instead of a tag. Additionally, workflows must include the following comment at the top of the workflow file:
    # This workflow uses actions that are not certified by GitHub.
    # They are provided by a third-party and are governed by
    # separate terms of service, privacy policy, and support
    # documentation.
    
  • Automation and CI workflows should not send data to any 3rd party service except for the purposes of installing dependencies.
  • Automation and CI workflows cannot be dependent on a paid service or product.

This workflow generates SLSA provenance files for projects, satisfying level 3 requirements. It includes steps for building artifacts and generating provenance subjects.
…-ui-patch-1

Add files via upload

Prompt ia
Merge pull request #1 from panchofrancisco1987-ui/panchofrancisco1987-ui-patch-1

Add files via upload

Prompt ia
@panchofrancisco1987-ui
panchofrancisco1987-ui requested review from a team as code owners July 8, 2026 04:06
@panchofrancisco1987-ui
panchofrancisco1987-ui requested review from a team as code owners July 8, 2026 04:53
@github-actions github-actions Bot added the code-scanning Related to workflows that show on the Code Scanning setup page label Jul 8, 2026
@panchofrancisco1987-ui

Copy link
Copy Markdown
Author

Pre-requisitos

* [x]  Antes de enviar un nuevo flujo de trabajo, solicite unirse al Programa de Socios Tecnológicos de GitHub: [partner.github.com/apply](https://partner.github.com/apply?partnershipType=Technology+Partner).

Tenga en cuenta que en este momento solo estamos aceptando nuevos flujos de trabajo de inicio para el escaneo de código. Las actualizaciones de los flujos de trabajo de inicio existentes están bien.

Tareas

Para todos los flujos de trabajo, el flujo de trabajo:

* [x]  Debe estar contenido en una `.yml` Archivo con el idioma o plataforma como su nombre de archivo, en inferior, [_Kebab-casado_](https://en.wikipedia.org/wiki/Kebab_case) formato (por ejemplo, [`docker-image.yml`](https://github.com/actions/starter-workflows/blob/main/ci/docker-image.yml)).  Los caracteres especiales deben ser eliminados o reemplazados por palabras según corresponda (por ejemplo, "dotnet" en lugar de ". NET").

* [ ]  Debe usar el caso de oración para los nombres de los flujos de trabajo y los pasos (por ejemplo, "Ejecutar pruebas").

* [x]  Debe ser nombrado _Solo_ por el nombre del idioma o plataforma (por ejemplo, "Ir", no "Go CI" o "Go Build").

* [ ]  Debe incluir comentarios en el flujo de trabajo para cualquier parte que no sea obvia o que pueda usar aclaraciones.

* [x]  Debería especificar los menos privilegiados [Permisos](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token) Para `GITHUB_TOKEN` Para que el flujo de trabajo se ejecute correctamente.

Para los flujos de trabajo de CI, el flujo de trabajo:

* [x]  Debe preservarse bajo [El  `ci`Directorio](https://github.com/actions/starter-workflows/tree/main/ci).

* [x]  Debe incluir una coincidencia `ci/properties/*.properties.json` Archivo (por ejemplo, [`ci/properties/docker-publish.properties.json`](https://github.com/actions/starter-workflows/blob/main/ci/properties/docker-publish.properties.json)).

* [x]  Should run on `push` to `branches: [ $default-branch ]` and `pull_request` to `branches: [ $default-branch ]`.

* [x]  Packaging workflows should run on `release` with `types: [ created ]`.

* [ ]  Publishing workflows should have a filename that is the name of the language or platform, in lower case, followed by "-publish" (for example, [`docker-publish.yml`](https://github.com/actions/starter-workflows/blob/main/ci/docker-publish.yml)).

For Code Scanning workflows, the workflow:

* [x]  Should be preserved under [the `code-scanning` directory](https://github.com/actions/starter-workflows/tree/main/code-scanning).

* [x]  Should include a matching `code-scanning/properties/*.properties.json` file (for example, [`code-scanning/properties/codeql.properties.json`](https://github.com/actions/starter-workflows/blob/main/code-scanning/properties/codeql.properties.json)), with properties set as follows:
  
  * [ ]  `name`: Name of the Code Scanning integration.
  * [ ]  `creator`: Name of the organization/user producing the Code Scanning integration.
  * [x]  `description`: Short description of the Code Scanning integration.
  * [ ]  `categories`: Array of languages supported by the Code Scanning integration.
  * [ ]  `iconName`: Name of the SVG logo representing the Code Scanning integration. This SVG logo must be present in [the `icons` directory](https://github.com/actions/starter-workflows/tree/main/icons).

* [ ]  Should run on `push` to `branches: [ $default-branch, $protected-branches ]` and `pull_request` to `branches: [ $default-branch ]`. We also recommend a `schedule` trigger of `cron: $cron-weekly` (for example, [`codeql.yml`](https://github.com/actions/starter-workflows/blob/c59b62dee0eae1f9f368b7011cf05c2fc42cf084/code-scanning/codeql.yml#L14-L21)).

Some general notes:

* [ ]  This workflow must _only_ use actions that are produced by GitHub, [in the `actions` organization](https://github.com/actions), **or**

* [ ]  This workflow must _only_ use actions that are produced by the language or ecosystem that the workflow supports.  These actions must be [published to the GitHub Marketplace](https://github.com/marketplace?type=actions).  We require that these actions be referenced using the full 40 character hash of the action's commit instead of a tag.  Additionally, workflows must include the following comment at the top of the workflow file:
  ```
  # This workflow uses actions that are not certified by GitHub.
  # They are provided by a third-party and are governed by
  # separate terms of service, privacy policy, and support
  # documentation.
  ```

* [x]  Automation and CI workflows should not send data to any 3rd party service except for the purposes of installing dependencies.

* [ ]  Automation and CI workflows cannot be dependent on a paid service or product.

@panchofrancisco1987-ui

Copy link
Copy Markdown
Author

Si

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

code-scanning Related to workflows that show on the Code Scanning setup page

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant