fix: make test suite pass on Windows and Python 3.12+ #1
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
| --- | |
| ### | |
| # This action is synced from https://github.com/prometheus/prometheus | |
| ### | |
| name: Approve pending workflows | |
| on: | |
| issue_comment: | |
| types: [created] | |
| permissions: read-all | |
| jobs: | |
| approve: | |
| if: >- | |
| github.event.issue.pull_request && | |
| github.event.comment.body == '/workflow-approve' && | |
| github.repository_owner == 'prometheus' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: prometheus/promci/approve_workflows@370e8c15dcec50043cbe66f2f34633d9efc0a190 | |
| with: | |
| github_token: ${{ github.token }} |