Skip to content

Commit

Permalink
Updated if statement within script run, variable wasn't being recogni…
Browse files Browse the repository at this point in the history
…sed so added $
  • Loading branch information
DaveW-STFC committed Sep 20, 2024
1 parent 3e50d0b commit 2ab75e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr_copied_files.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: actions/github-script@v7
with:
script: |
if (resultjob1 != false) {
if ($resultjob1 != false) {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand Down
2 changes: 1 addition & 1 deletion charts/staging/argocd/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies:
# https://github.com/argoproj/argo-helm/releases
# https://github.com/argoproj/argo-helm/releases ---
- name: argo-cd
version: 7.0.0
repository: https://argoproj.github.io/argo-helm
Expand Down
2 changes: 1 addition & 1 deletion charts/staging/argocd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ argo-cd:
tls: true

certificate:
# -- Deploy a Certificate resource (requires cert-manager)
# -- Deploy a Certificate resource (requires cert-manager) ---
enabled: true
issuer:
kind: "ClusterIssuer"
Expand Down

0 comments on commit 2ab75e3

Please sign in to comment.