Update action to allow composer to access multiple private repositori… #51
This file contains 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: 'Latest Test' | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'releases/**' | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
branches: | |
- 'main' | |
- 'releases/**' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
event_test_action: | |
name: 'Test Build Composer Satis Repository' | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout-repository | |
name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- id: generate-satis-repo | |
name: 'Test Run Generate Satis Repository Action' | |
uses: ./.github/actions/test | |
with: | |
ref: ${{ github.ref }} | |