├── README.md ├── renovate.json └── action.yml /README.md: -------------------------------------------------------------------------------- 1 | Unified release-plz action for oxc projects. 2 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": ["helpers:pinGitHubActionDigestsToSemver"] 4 | } 5 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: Oxc Release Plz 2 | 3 | description: Release Plz 4 | 5 | inputs: 6 | PAT: 7 | required: true 8 | type: string 9 | 10 | runs: 11 | using: composite 12 | steps: 13 | - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 14 | with: 15 | fetch-depth: 0 16 | token: ${{ inputs.PAT }} 17 | persist-credentials: true # required by release-plz 18 | 19 | - uses: oxc-project/release-plz-action@12ee013e577af39a0b75f282e04064658afca86e # v1.0.1 20 | env: 21 | GITHUB_TOKEN: ${{ inputs.PAT }} 22 | --------------------------------------------------------------------------------