# tooling-actions **Repository Path**: mirrors_apache/tooling-actions ## Basic Information - **Project Name**: tooling-actions - **Description**: Apache tooling - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-23 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ASF Tooling Actions This repository contains GitHub Actions written and maintained by the **Apache Software Foundation (ASF) Tooling team**. **Note:** ASF Tooling is an operational team. Unlike Project Management Committees (PMCs), we do not make Board-approved releases. If you are looking for infrastructure-related actions, please visit [ASF Infrastructure Actions](https://github.com/apache/infrastructure-actions) instead. ## Versioning Policy **We do not tag versions.** For security and stability, you must refer to every action by its **pinned commit hash** (SHA). Do not use `@main` or `@v1`. ## Available Actions ### `apache/tooling-actions/upload-to-atr` ![Status: Experimental](https://img.shields.io/badge/Status-EXPERIMENTAL-orange) Upload your artifacts to the Apache Trusted Release (ATR) system using OIDC and an ephemeral SSH key. #### Who is this for? If you are a PMC Release Manager testing the ATR, we need your help testing this action. Please report any issues you encounter. #### Usage Example Add the following to your workflow `.yml` file. Ensure you replace `` with the full SHA of the specific commit you wish to use. ```yaml jobs: release: runs-on: ubuntu-latest permissions: id-token: write # Required for OIDC contents: read steps: - name: Checkout code uses: actions/checkout@ - name: Upload to ATR uses: apache/tooling-actions/upload-to-atr@ with: # Add specific inputs here that are required by the action # project: example # version: ${{ github.ref_name }}