remove xfail tests #90
Workflow file for this run
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: Start CI Support Run | |
| on: | |
| push: | |
| branches: | |
| - 'support/**' | |
| jobs: | |
| starter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1 | |
| with: | |
| egress-policy: audit | |
| - name: Get branch names | |
| id: branch-names | |
| uses: tj-actions/branch-names@5250492686b253f06fa55861556d1027b067aeb5 # v9.0.2 | |
| - name: 'start test' | |
| run: | | |
| curl -s -X POST \ | |
| --fail \ | |
| -F token=${{ secrets.CB_PIPELINE }} \ | |
| -F "ref=heat/support" \ | |
| -F "variables[SHA]=$GITHUB_SHA" \ | |
| -F "variables[GHBRANCH]=${{ steps.branch-names.outputs.current_branch }}" \ | |
| https://codebase.helmholtz.cloud/api/v4/projects/7605/trigger/pipeline -o /dev/null |