Skip to content

Commit 92eadfb

Browse files
author
Sean Sundberg
authored
Pipeline fixes (#104)
* Updates the release type triggers to published and released * Updates if logic in verify pr to fix error
1 parent 3836f11 commit 92eadfb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/notify.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Notify
22

33
on:
44
release:
5-
types: [created]
5+
types:
6+
- published
7+
- released
68

79
jobs:
810
notify:

.github/workflows/verify-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
verify:
1212
# The type of runner that the job will run on
13-
if: !(contains(github.event.commits[0].message, '[skip ci]') || contains(github.event.pull_request.labels.*.name, 'skip ci'))
13+
if: ${{ !contains( github.event.pull_request.labels.*.name, 'skip ci' ) }}
1414
runs-on: ubuntu-latest
1515
container: ibmgaragecloud/cli-tools:0.4.0-lite
1616

0 commit comments

Comments
 (0)