Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ncalteen committed Nov 21, 2023
1 parent 08c786e commit 11edde8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- closed
branches:
- main
workflow_dispatch:

permissions:
contents: write
Expand All @@ -16,8 +17,9 @@ jobs:
runs-on: ubuntu-latest

if: |
github.event.pull_request.merged == true &&
startsWith(github.head_ref, 'dependabot/') == false
github.event_name == 'workflow_dispatch' ||
(github.event.pull_request.merged == true &&
startsWith(github.head_ref, 'dependabot/') == false)
steps:
- name: Checkout
Expand All @@ -28,7 +30,7 @@ jobs:

- name: Tag
id: tag
uses: issue-ops/semver@v0.1.0
uses: issue-ops/semver@v0.3.2
with:
manifest-path: package.json
workspace: ${{ github.workspace }}
Expand Down

0 comments on commit 11edde8

Please sign in to comment.