PB-1080: show both warning and error feedback #5378
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
name: Create test link on PR creation | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- edited | |
jobs: | |
update_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create/update test link on DEV | |
if: ${{ github.base_ref != 'master' }} | |
uses: tzkhan/pr-update-action@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
head-branch-regex: '.+' | |
body-template: | | |
[Test link](https://sys-map.dev.bgdi.ch/preview/%headbranch%/index.html) | |
body-update-action: 'suffix' | |
body-uppercase-head-match: false | |
- name: Create/update deployment link on INT | |
if: ${{ github.base_ref == 'master' }} | |
uses: tzkhan/pr-update-action@v2 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
head-branch-regex: '.+' | |
body-template: | | |
[Test link](https://sys-map.int.bgdi.ch/preview/%headbranch%/index.html) | |
body-update-action: 'suffix' | |
body-uppercase-head-match: false |