Skip to content

Commit

Permalink
Add pipe
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Perkins <[email protected]>
  • Loading branch information
cwperks committed May 15, 2024
1 parent 429dd6d commit cfaddd7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/example_dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ on: [pull_request, push]
jobs:
example_job:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Print GitHub actor
run: echo "GitHub Actor: ${{ github.actor }}"
run: |
echo "GitHub Actor: ${{ github.actor }}"
- name: Conditional Step
if: ${{ github.actor == 'dependabot[bot]' }}
run: echo "This job runs because the actor is dependabot."

0 comments on commit cfaddd7

Please sign in to comment.