Bump cross-spawn from 6.0.5 to 6.0.6 #32
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Main | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: A job to test the action | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Extract info | |
uses: ./ # Uses an action in the root directory | |
id: infos | |
with: | |
filter_push: '.commits[].author' | |
filter_pull_request: '.pull_request.commits' | |
# Use the output from the `infos` step | |
- name: Show extracted info | |
run: | | |
echo "Infos" | |
echo "value: ${{ steps.infos.outputs.value }}" | |
echo "branch: ${{ steps.infos.outputs.branch }}" | |
echo "pull_request: ${{ steps.infos.outputs.pull_request }}" |