This repository has been archived by the owner on Aug 4, 2023. It is now read-only.
Bump pytest-mock from 3.10.0 to 3.11.1 #2479
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: PR label check | |
# ℹ️ https://github.com/WordPress/openverse/blob/main/.github/GITHUB.md#pr-label-check | |
on: | |
pull_request: | |
types: | |
# Default types | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request | |
- opened | |
- reopened | |
- synchronize | |
# Label is changed | |
- labeled | |
- unlabeled | |
jobs: | |
check_aspect_label: | |
name: Check aspect label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check aspect label | |
uses: docker://agilepathway/pull-request-label-checker:v1.2.13 | |
with: | |
one_of: "💻 aspect: code,📄 aspect: text,🤖 aspect: dx,🕹 aspect: interface,♿️ aspect: a11y" | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
check_goal_label: | |
name: Check goal label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check goal label | |
uses: docker://agilepathway/pull-request-label-checker:v1.2.13 | |
with: | |
one_of: "🌟 goal: addition,🛠 goal: fix,✨ goal: improvement,🧰 goal: internal improvement" | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
check_priority_label: | |
name: Check priority label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check priority label | |
uses: docker://agilepathway/pull-request-label-checker:v1.2.13 | |
with: | |
one_of: "🟩 priority: low,🟨 priority: medium,🟧 priority: high,🟥 priority: critical" | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
check_stack_label: | |
name: Check stack label | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check stack label | |
uses: docker://agilepathway/pull-request-label-checker:v1.2.13 | |
with: | |
any_of: "🧱 stack: backend,🧱 stack: frontend,🧱 stack: mgmt,🧱 stack: api,🧱 stack: catalog,🧱 stack: ingestion server" | |
repo_token: ${{ secrets.GITHUB_TOKEN }} |