Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Check these steps before issuing the PR:
- [] Ensure the target / base branch for any feature PR is set to `dev` not master (the only exception to this is releases from `dev` and hotfix branches)
- [] Please make sure your PR Title is of the following syntax: `[REMS-##] Short Issue Name` if ready for review
2 changes: 1 addition & 1 deletion .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker Image CI

on:
pull_request:
branches: [ master ]
branches: [ master, dev ]
workflow_dispatch:


Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/porter-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Porter Invocation Docker Image CI

on:
pull_request:
branches: [ master ]
branches: [ master, dev ]
workflow_dispatch:


Expand All @@ -14,6 +14,11 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- run: 'echo "VSAC_API_KEY=$VSAC_API_KEY" > .env; echo "COMPOSE_PROJECT_NAME=rems_porter" >> .env'
shell: bash
env:
VSAC_API_KEY: ${{secrets.VSAC_API_KEY}}

- name: Install Porter
run: curl -L https://cdn.porter.sh/canary/install-linux.sh | bash

Expand Down