Skip to content

Commit

Permalink
Sqaaas code (#89)
Browse files Browse the repository at this point in the history
* Create sqaaas.yml

* Update sqaaas.yml

* Update sqaaas.yml

* Point to the current repo

* Remove unnecessary checkout step

* Rename step

* ADD: adaptive branch discovery for SQAaaS action

* Update sqaaas.yml

---------

Co-authored-by: orviz <[email protected]>
  • Loading branch information
matbun and orviz authored Oct 27, 2023
1 parent e99276f commit 1207e16
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/sqaaas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ 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: Print current branch name (debug)
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 1207e16

Please sign in to comment.