Testing line numbers #2
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: Get modified lines | |
on: [ pull_request ] | |
jobs: | |
find_changed_lines: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Find changed lines | |
id: changed_lines | |
uses: hestonhoffman/changed-lines@v1 | |
- name: Print changed lines | |
run: echo ${{ steps.changed_lines.outputs.changed_lines }} |