Update workflow to store and pull streetview images from GCS subdirectory #120
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: Label and Assign Reviewers | |
on: [pull_request_target] | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Label PR | |
uses: actions/labeler@v5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
assign-reviewers: | |
runs-on: ubuntu-latest | |
needs: label | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Assign Reviewers | |
uses: kentaro-m/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
configuration-path: '.github/auto_assign.yml' |