chore(deps): Pin hyperi-io/hyperi-ci action to 7654596 #301
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Project: hyperi-rustlib | |
| # File: .github/workflows/ci.yml | |
| # Purpose: CI pipeline | |
| # | |
| # License: FSL-1.1-ALv2 | |
| # Copyright: (c) 2026 HYPERI PTY LIMITED | |
| name: CI | |
| on: | |
| push: | |
| branches: ["**"] | |
| paths-ignore: | |
| - ".claude/**" | |
| - ".cursor/**" | |
| - ".gemini/**" | |
| - "hyperi-ai/**" | |
| - "docs/**" | |
| - "**.md" | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| type: string | |
| required: true | |
| description: "Tag to publish (e.g. v1.20.1)" | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| ci: | |
| uses: hyperi-io/hyperi-ci/.github/workflows/rust-ci.yml@76545964f627863e295b5c04b80fb433702e5cca # main | |
| with: | |
| publish-target: oss | |
| tag: ${{ inputs.tag || '' }} | |
| secrets: inherit |