Bump astro from 5.15.9 to 5.18.1 #51
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
| # This workflow will auto-pick reviewers to assign to a PR when a 'request-review' label is applied | |
| name: Pickaroo Reviewers | |
| on: | |
| pull_request: | |
| types: ["labeled"] | |
| jobs: | |
| request-director-reviewers: | |
| if: ${{ github.event.label.name == 'pr-review' }} | |
| uses: newjersey/innovation-shared-actions/.github/workflows/pickaroo.yml@main | |
| secrets: inherit | |
| permissions: {} | |
| with: | |
| include_users: "timwright12 aloverso" | |
| number_of_reviewers: 1 | |
| number_of_repicks: 0 # don't repick a director | |
| channel_id: C03C7NHK9B4 # engineering-all | |
| request-eng-reviewers: | |
| if: ${{ github.event.label.name == 'pr-review' }} | |
| needs: request-director-reviewers | |
| uses: newjersey/innovation-shared-actions/.github/workflows/pickaroo.yml@main | |
| secrets: inherit | |
| permissions: {} | |
| with: | |
| include_teams: "innovation-engineering" | |
| exclude_users: "dhcole gamorgana" | |
| number_of_repicks: 1 | |
| channel_id: C03C7NHK9B4 # engineering-all | |
| pr-show: | |
| if: ${{ github.event.label.name == 'pr-show' }} | |
| uses: newjersey/innovation-shared-actions/.github/workflows/pickaroo.yml@main | |
| secrets: inherit | |
| permissions: {} | |
| with: | |
| show: true | |
| channel_id: C03C7NHK9B4 # engineering-all |