fix: Incomplete URL logging on exception #313
This file contains 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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Semantic PR | |
concurrency: | |
group: Semantic-PR-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- reopened | |
jobs: | |
semantic-pr: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 1 | |
steps: | |
- name: Semantic pull-request | |
uses: amannn/[email protected] | |
with: | |
requireScope: false | |
wip: true | |
validateSingleCommit: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |