Skip to content

Commit

Permalink
ci: testing on pull request
Browse files Browse the repository at this point in the history
This is to see if secret is immediately available when just creating branch
  • Loading branch information
karhama authored Jan 21, 2025
1 parent 679dd80 commit 97425b3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/secret-test
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: On pull request secret tester
on:
pull_request:

jobs:
build:
name: Build and Analyze
runs-on: ubuntu-22.04
steps:
- name: Expose Dummy Secret
run: |
DUMMY_SECRET="${{ secrets.DUMMY }}"
echo "Dummy Secret: $(echo $DUMMY_SECRET | sed 's/./& /g')"

0 comments on commit 97425b3

Please sign in to comment.