Skip to content

Commit

Permalink
Merge pull request github#15481 from Layoric/patch-2
Browse files Browse the repository at this point in the history
Use valid reusable workflow paths in example yml
  • Loading branch information
ramyaparimi authored Mar 2, 2022
2 parents 99ca7da + 4b3f6ad commit 13de02d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/actions/using-workflows/reusing-workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ You can define inputs and secrets, which can be passed from the caller workflow
runs-on: ubuntu-latest
environment: production
steps:
- uses: ./.github/actions/my-action
- uses: ./.github/workflows/my-action
with:
username: ${{ inputs.username }}
token: ${{ secrets.envPAT }}
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
name: Pass input and secrets to my-action
runs-on: ubuntu-latest
steps:
- uses: ./.github/actions/my-action
- uses: ./.github/workflows/my-action
with:
username: ${{ inputs.username }}
token: ${{ secrets.token }}
Expand Down

0 comments on commit 13de02d

Please sign in to comment.