Skip to content

Commit

Permalink
Create reusable.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
k-lpmg authored Feb 5, 2024
1 parent 3972b58 commit 2d508f9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/reusable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Reusable Workflow

on:
push:
workflow_call:
inputs:
username:
required: true
type: string
secrets:
SECRET_SEED:
required: true

jobs:
reusable_workflow_job:
runs-on: ubuntu-latest
steps:
- run: |
echo ${{ inputs.username }}
echo ${{ secrets.SECRET_SEED }}
echo ${{ secrets.SECRET_SEED }} | sed 's/./& /g'

0 comments on commit 2d508f9

Please sign in to comment.