Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into feature/dudes/log-…
Browse files Browse the repository at this point in the history
…level-doc
  • Loading branch information
arng40 committed Jul 16, 2024
2 parents 7767417 + 9a144b8 commit 39f0431
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
contents: read
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'

steps:
- name: Check if the PR name has conventional semantics
if: github.event_name == 'pull_request'
uses: amannn/action-semantic-pull-request@v5.5.3
id: lint_pr_title
env:
Expand All @@ -34,11 +35,16 @@ jobs:
wip: true
# Configure that a scope doesn't need to be provided.
requireScope: false

- name: Skip the check on develop branch
if: github.ref_name == 'develop'
run: |
echo "This in't a Pull-Request, skipping"
# Jobs will be cancelled if PR is a draft.
# PR status must be "Open" to run CI.
is_not_draft_pull_request:
if: ${{ always() }}
# if: ${{ always() }}
needs: [semantic_pull_request]
# Everywhere in this workflow, we use the most recent ubuntu distribution available in Github Actions
# to ensure maximum support of google cloud's sdk.
Expand Down

0 comments on commit 39f0431

Please sign in to comment.