Incorporate 'shared snippets' for the collection docs into the main rst files #2059
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
--- | |
# Copyright (C) 2023 Maxwell G <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
"on": | |
pull_request_target: | |
issues: | |
types: | |
- opened | |
workflow_dispatch: | |
inputs: | |
type: | |
required: true | |
type: choice | |
options: | |
- issue | |
- pr | |
number: | |
required: true | |
type: number | |
name: "Triage Issues and PRs" | |
jobs: | |
label_prs: | |
runs-on: ubuntu-latest | |
environment: github-bot | |
name: "Label Issue/PR" | |
steps: | |
- name: Print event information | |
env: | |
event_json: "${{ toJSON(github.event) }}" | |
run: | | |
echo "${event_json}" | |
- name: Generate temp GITHUB_TOKEN | |
id: create_token | |
uses: tibdex/github-app-token@v2 | |
with: | |
app_id: ${{ secrets.BOT_APP_ID }} | |
private_key: ${{ secrets.BOT_APP_KEY }} | |
- name: Checkout parent repository | |
uses: actions/checkout@v4 | |
- name: Install Python 3.11 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Setup venv | |
run: | | |
python -m venv venv | |
./venv/bin/pip install -r hacking/pr_labeler/requirements.txt | |
- name: "Run the issue labeler" | |
if: "github.event.issue || inputs.type == 'issue'" | |
env: | |
event_json: "${{ toJSON(github.event) }}" | |
GITHUB_TOKEN: ${{ steps.create_token.outputs.token }} | |
number: "${{ github.event.issue.number || inputs.number }}" | |
run: | | |
./venv/bin/python hacking/pr_labeler/label.py issue "${number}" | |
- name: "Run the PR labeler" | |
if: "github.event.pull_request || inputs.type == 'pr'" | |
env: | |
event_json: "${{ toJSON(github.event) }}" | |
GITHUB_TOKEN: ${{ steps.create_token.outputs.token }} | |
number: "${{ github.event.number || inputs.number }}" | |
run: | | |
./venv/bin/python hacking/pr_labeler/label.py pr "${number}" |