Skip to content

Merge pull request #12 from HenryCabarcas/tests #31

Merge pull request #12 from HenryCabarcas/tests

Merge pull request #12 from HenryCabarcas/tests #31

Workflow file for this run

on:
push:
branches: ["tests","main"]
jobs:
push-workflow:
runs-on: ubuntu-latest
steps:
# This step is required
- name: checkout source
uses: actions/checkout@master
with:
fetch-depth: 2 # Fetch enough history to compare commits
- name: Calculate Next Version
uses: ./
id: versioning
with:
source-commit: ${{ github.event.after }}
# target-commit is not required here since is calculated
# on runtime based on the merge branch
github-token: ${{ secrets.GH_TOKEN }}
- name: Show Output
run: echo '${{ toJson(steps.versioning.outputs) }}'