Update glotter2 to 0.14.0 #42
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: "Pull Request Labeler" | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| labeler: | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 2 | |
| - name: Read repo config | |
| uses: pietrobolcato/action-read-yaml@1.1.0 | |
| id: repo-config | |
| with: | |
| config: repo-config.yml | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "${{ steps.repo-config.outputs['python-version'] }}" | |
| - name: Run Poetry Image | |
| uses: abatilo/actions-poetry@v3 | |
| with: | |
| poetry-version: "${{ steps.repo-config.outputs['poetry-version'] }}" | |
| - name: Install Dependencies | |
| run: poetry install | |
| - name: Create labels | |
| run: poetry run python scripts/set_up_labeler.py | |
| - name: Show labeler config | |
| run: cat .github/labeler.yml | |
| - uses: actions/labeler@v6 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| sync-labels: true |