Skip to content

Commit

Permalink
[#3] test
Browse files Browse the repository at this point in the history
  • Loading branch information
elBoberido committed Nov 20, 2024
1 parent 61d5356 commit 150b5b2
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ jobs:
check_wip_pr:
runs-on: ubuntu-latest
steps:
- name: Title has WIP Marker
id: title_has_wip_marker
- name: Check for WIP Marker
if: startsWith(github.event.pull_request.title, '[WIP]')
run: echo "WIP PR -> Skipping CI"
outputs:
is_wip_pr: ${{ steps.title_has_wip_marker.outcome }} == "success"
run: |
echo "WIP PR -> Aborting CI"
run: exit 1
changes:
needs: check_wip_pr
if: ${{ needs.check_wip_pr.outputs.is_wip_pr == 'false' }}
runs-on: ubuntu-latest
permissions:
pull-requests: read
Expand Down

0 comments on commit 150b5b2

Please sign in to comment.