This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
Emit batch size #1752
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test secret set from API | |
on: [push, workflow_dispatch] | |
jobs: | |
test-secret-set-from-api: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "${{secrets.TEST_SECRET}}" | |
- run: if [[ "${{secrets.TEST_SECRET}}" = "thing" ]]; then echo "success"; fi | |
shell: bash |