fix: respect diff config options in soft assertions #113
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: Label Automated PR | |
| on: | |
| pull_request_target: | |
| types: [opened, edited] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| if: contains(github.event.pull_request.body, '<!-- VITEST_AUTOMATED_PR -->') | |
| steps: | |
| - name: maybe automated | |
| uses: actions-cool/issues-helper@71b62d7da76e59ff7b193904feb6e77d4dbb2777 # v3.7.6 | |
| with: | |
| actions: add-labels | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-number: ${{ github.event.pull_request.number }} | |
| labels: maybe automated |