WIP: Add --unified to use our container-storage for host images #81
Workflow file for this run
This file contains hidden or 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: Auto Assign Reviewer | |
on: | |
pull_request_target: | |
types: [opened, ready_for_review] | |
jobs: | |
assign-reviewer: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: read | |
issues: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pyyaml | |
- name: Generate Bootc Actions Token | |
id: bootc_token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.APP_ID }} | |
private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
- name: Assign reviewer | |
env: | |
PR_NUMBER: ${{ github.event.pull_request.number }} | |
GH_TOKEN: ${{ steps.bootc_token.outputs.token }} | |
run: | | |
python .github/scripts/assign_reviewer.py |