fix(web): Try xdg-open before hardcoded browsers #1101
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: autofix.ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ "main", "ci" ] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mhils/workflows/checkout@8fe88b311a66c441e01edfebe4cd90d8a47fa335 | |
| - uses: mhils/workflows/setup-python@8fe88b311a66c441e01edfebe4cd90d8a47fa335 | |
| - uses: mhils/workflows/setup-uv@8fe88b311a66c441e01edfebe4cd90d8a47fa335 | |
| - run: uv lock | |
| - run: uv run ruff check --fix-only . | |
| - run: uv run ruff format . | |
| - run: uv run test/test_snapshot.py | |
| - uses: mhils/add-pr-ref-in-changelog@6df8cd5a0c4d0a8c0353b663153d4a36384054f4 | |
| - uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8 |