chore(config): Rename Idempotent and make doc clearer
#186
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
| # SPDX-FileCopyrightText: AISEC Pentesting Team | |
| # | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: reviewers | |
| on: | |
| pull_request: | |
| jobs: | |
| assign-reviewers: | |
| continue-on-error: true | |
| runs-on: ubuntu-latest | |
| # FIXME: The current version of gh on default runners is outdated and fails its tasks due to this bug: https://github.com/cli/cli/pull/11835 | |
| container: archlinux | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 50 | |
| - run: | | |
| pacman -Syu --noconfirm github-cli python | |
| - run: | | |
| .github/workflows/assign_reviewers.py \ | |
| --team-members rumpelsepp peckto emeisd ferdinandjarisch fkglr \ | |
| --repo ${{ github.repository }} \ | |
| --pr-id ${{ github.event.pull_request.number }} |