Skip to content

Commit

Permalink
.github/actions/detect/action.yaml:
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-matejka committed Jan 29, 2025
1 parent 38ebf97 commit d7891d3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/actions/detect/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,20 @@ runs:
files: ${{ inputs.path }}
base_sha: ${{ inputs.before }}

- id: show
env:
github: ${{ toJSON(github) }}
run:
echo "$github"
shell: sh

- id: changes-branch
name: detect branch changes
if: steps.changes-push.outputs.any_changed == 'false'
uses: tj-actions/changed-files@v45
with:
files: ${{ inputs.path }}
base_sha: ${{ github.event.default_branch }}
base_sha: ${{ github.event.repository.default_branch }}

- id: tag
name: determine tags
Expand Down

0 comments on commit d7891d3

Please sign in to comment.