Skip to content

Commit d249b12

Browse files
authored
(chore): porter/porter should run on push to main and merge into main (getporter#3016)
* (bug): Run porter workflow for PR and merge into main Signed-off-by: schristoff <28318173+schristoff@users.noreply.github.com> --------- Signed-off-by: schristoff <28318173+schristoff@users.noreply.github.com>
1 parent bb5ede0 commit d249b12

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/porter-canary.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ on:
2222
jobs:
2323
build_pipelinesrelease_template:
2424
name: build_pipelinesrelease_template
25-
uses: './.github/workflows/build_pipelinesrelease_template.yml'
25+
uses: ./.github/workflows/build_pipelinesrelease_template.yml
2626
with:
2727
registry: ghcr.io/getporter
28-
shouldPublish: ${{inputs.shouldPublish}}
29-
skipTests: ${{inputs.skipTests}}
28+
shouldPublish: "${{inputs.shouldPublish}}"
29+
skipTests: "${{inputs.skipTests}}"

.github/workflows/porter.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
name: porter/porter
1+
name: porter
22
on:
33
push:
44
branches:
55
- main
6+
pull_request:
7+
branches:
8+
- main
69
paths-ignore:
710
- 'docs/**'
811
env:

0 commit comments

Comments
 (0)