[pl_PL] Translator access request #644
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: New issue | |
| on: | |
| issues: | |
| types: | |
| - opened | |
| jobs: | |
| new_issue: | |
| name: New issue | |
| runs-on: ubuntu-latest | |
| if: github.actor != 'DorpsGek' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Python 3.8 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.8 | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: | | |
| pip install -U pip | |
| pip install -r requirements.txt | |
| - name: New issue | |
| run: | | |
| python -m request_access --new-issue | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.DORPSGEK_TOKEN }} |