Skip to content

Commit

Permalink
masking base64
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Jun 7, 2024
1 parent 1327a97 commit 3669470
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/soak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
description: Your .toml file as base64
required: true
cl_image_tag:
description: Your .toml file as base64
description: Core image tag
required: true
default: develop
type: string
Expand Down Expand Up @@ -75,7 +75,6 @@ jobs:
TEST_ARGS: -test.timeout 30m
TEST_LOG_LEVEL: debug
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BASE64_CONFIG_OVERRIDE: ${{ github.event.inputs.base64_config }}
steps:
- name: Collect Metrics
id: collect-gha-metrics
Expand All @@ -94,6 +93,11 @@ jobs:
run: ./scripts/install-solana-ci.sh
- name: Install gauntlet
uses: ./.github/actions/build-gauntlet
- name: Get Slack config and mask base64 config
run: |

Check failure on line 97 in .github/workflows/soak.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/soak.yml#L97

shellcheck reported issue in this script: SC2086:info:1:56: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/soak.yml:97:9: shellcheck reported issue in this script: SC2086:info:1:56: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 97 in .github/workflows/soak.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/soak.yml#L97

shellcheck reported issue in this script: SC2086:info:2:18: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/soak.yml:97:9: shellcheck reported issue in this script: SC2086:info:2:18: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 97 in .github/workflows/soak.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/soak.yml#L97

shellcheck reported issue in this script: SC2086:info:3:58: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/soak.yml:97:9: shellcheck reported issue in this script: SC2086:info:3:58: Double quote to prevent globbing and word splitting [shellcheck]
BASE64_CONFIG_OVERRIDE=$(jq -r '.inputs.base64_config' $GITHUB_EVENT_PATH)
echo ::add-mask::$BASE64_CONFIG_OVERRIDE
echo "BASE64_CONFIG_OVERRIDE=$BASE64_CONFIG_OVERRIDE" >> $GITHUB_ENV
- name: Run Tests
uses: smartcontractkit/chainlink-github-actions/chainlink-testing-framework/run-tests@b49a9d04744b0237908831730f8553f26d73a94b # v2.3.17
with:
Expand Down

0 comments on commit 3669470

Please sign in to comment.