We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c12640 commit 52b6006Copy full SHA for 52b6006
1 file changed
.github/workflows/use_org_secret.yaml
@@ -0,0 +1,22 @@
1
+name: create-organization-github-secrets-from-workflow
2
+on:
3
+ workflow_dispatch:
4
+
5
+run-name: using secrets in ${{ inputs.organization }}
6
+jobs:
7
+ create-organization-github-secrets-from-workflow:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: use secret
11
+ env:
12
+ TEST: ${{ secrets.TEST }}
13
+ run: |
14
+ echo "hello Everyone"
15
+ echo $TEST >> cat.txt
16
+ - name: text
17
18
+ ls -la
19
+ cat cat.txt
20
+ - name: Completed
21
22
+ echo "program completed successfully"
0 commit comments