Skip to content

Commit

Permalink
Update configuration to use new branch names
Browse files Browse the repository at this point in the history
* Update configuration to use new branch names

* Update branch name in template
  • Loading branch information
michaelpnelson authored Jan 31, 2024
1 parent a1a4021 commit 8ed9690
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ name: dev_push
on:
push:
branches:
- develop
- develop-2024

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
ref: develop
ref: develop-2024
- name: Send Payload
run: |
curl -H "Content-Type: application/json" -X POST -d @$GITHUB_EVENT_PATH ${{ secrets.DEV_WEBHOOK_URL }}
4 changes: 2 additions & 2 deletions .github/workflows/qa_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ name: qa_push
on:
push:
branches:
- qa
- qa-2024

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
ref: qa
ref: qa-2024
- name: Send Payload
run: |
curl -H "Content-Type: application/json" -X POST -d @$GITHUB_EVENT_PATH ${{ secrets.TEST_WEBHOOK_URL }}
2 changes: 1 addition & 1 deletion openshift/truck-route-planner-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ parameters:
value: https://github.com/bcgov/smk-tlink.git
- name: "GIT_BRANCH"
description: "github repo branch"
value: dev
value: develop-2024
- name: "TOOLS_NAMESPACE"
description: "tools namespace where build will be"
value: tools_namespace
Expand Down

0 comments on commit 8ed9690

Please sign in to comment.