Skip to content

Commit

Permalink
move variables to env block
Browse files Browse the repository at this point in the history
  • Loading branch information
jetersen committed Jun 13, 2022
1 parent d670515 commit 6072252
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ outputs:
runs:
using: composite
steps:
- run: GITHUB_TOKEN=${{ inputs.GITHUB_TOKEN }} INTERESTING_CATEGORIES='${{ inputs.INTERESTING_CATEGORIES }}' $GITHUB_ACTION_PATH/run.sh
- run: $GITHUB_ACTION_PATH/run.sh
id: interesting-category
shell: bash
env:
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}
INTERESTING_CATEGORIES: ${{ inputs.INTERESTING_CATEGORIES }}
RELEASE_DRAFT_BODY: ${{ inputs.RELEASE_DRAFT_BODY }}

0 comments on commit 6072252

Please sign in to comment.