This repository was archived by the owner on Sep 2, 2026. It is now read-only.
release: v0.72.16 #2051
Workflow file for this run
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
| name: Homeboy | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| tags: ['v*'] | |
| workflow_dispatch: | |
| concurrency: | |
| group: homeboy-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| reusable-workflow-contract: | |
| name: Reusable workflow contract | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Download pinned reusable workflow contract | |
| env: | |
| CONTRACT_URL: https://raw.githubusercontent.com/Extra-Chill/homeboy-action/v2/.github/workflows/ci.yml | |
| run: curl --fail --location --retry 3 --silent --show-error "$CONTRACT_URL" --output "$RUNNER_TEMP/homeboy-action-ci.yml" | |
| - name: Verify caller inputs | |
| run: php .github/scripts/homeboy-workflow-input-contract.php "$RUNNER_TEMP/homeboy-action-ci.yml" | |
| homeboy: | |
| uses: Extra-Chill/homeboy-action/.github/workflows/ci.yml@v2 | |
| with: | |
| commands: review audit,review lint,review test | |
| expected-commands: review audit,review lint,review test | |
| differential-gating: 'true' | |
| baseline-commands: review lint,review test | |
| secrets: inherit |