Skip to content

Commit

Permalink
ADD: adaptive branch discovery for SQAaaS action
Browse files Browse the repository at this point in the history
  • Loading branch information
matbun authored Oct 27, 2023
1 parent f497aa1 commit 151e2a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/sqaaas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@ jobs:
runs-on: ubuntu-latest
name: Job that triggers SQAaaS platform
steps:
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Branch name
shell: bash
run: echo running on branch ${{ steps.extract_branch.outputs.branch }}
- name: SQAaaS assessment step
uses: eosc-synergy/sqaaas-assessment-action@v1
with:
repo: 'https://github.com/interTwin-eu/itwinai'
branch: 'sqaaas-code'
branch: ${{ steps.extract_branch.outputs.branch }}

0 comments on commit 151e2a2

Please sign in to comment.