Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bonicim committed Jun 8, 2024
1 parent 64fe479 commit 6697da9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
triggeredBy:
description: 'Name of team member who is manually triggering this workflow'
required: true
default: ''

defaults:
run:
Expand All @@ -28,10 +29,11 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- run: |
- if: ${{ inputs.triggeredBy != '' }}
run: |
echo "This workflow was triggered by: $TRIGGER_PERSON"
env:
TRIGGER_PERSON: ${{ github.event.inputs.triggeredBy }}
TRIGGER_PERSON: ${{ inputs.triggeredBy }}
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
Expand Down

0 comments on commit 6697da9

Please sign in to comment.