python-deps(deps-dev): bump the python-dependencies group with 3 updates #232
Workflow file for this run
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: Assign Reviewers to Pull Requests | |
on: | |
pull_request_target: | |
types: [opened, ready_for_review, reopened] | |
workflow_call: | |
inputs: | |
reviewer-teams-list: | |
description: A comma-separated list of team names to add as reviewers. | |
required: true | |
type: string | |
jobs: | |
assign-reviewers: | |
runs-on: ubuntu-latest | |
env: | |
REVIEWER_TEAMS_LIST: ${{ inputs.reviewer-teams-list || 'tm-devices-maintainers,tm-devices-admin' }} | |
steps: | |
- name: Assign Reviewers | |
uses: rowi1de/[email protected] | |
with: | |
# If this job ever starts failing, the most likely reason is that this secret is no | |
# longer valid. This secret needs to be a Personal Access Token (Classic) with the | |
# public_repo and read:org permissions. It also needs to be from an account that is | |
# part of the tektronix GitHub organization. | |
repo-token: ${{ secrets.ASSIGN_REVIEWERS_TOKEN }} | |
teams: ${{ env.REVIEWER_TEAMS_LIST }} |