STYLE: Make documentation module consistent with Sphinx conventions #209
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: label pull request on title | |
on: | |
- pull_request_target | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install packages | |
run: | | |
python -m pip install --upgrade --user pip | |
pip install ghapi==1.0.1 | |
pip install pyyaml | |
pip --version | |
pip list | |
- name: Label pull request | |
run: python .github/scripts/pr_title_regex_labeler.py | |
env: | |
CONTEXT_GITHUB: ${{ toJson(github) }} |