Skip to content

Bump cross-spawn from 6.0.5 to 6.0.6 #32

Bump cross-spawn from 6.0.5 to 6.0.6

Bump cross-spawn from 6.0.5 to 6.0.6 #32

Workflow file for this run

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 }}"