Skip to content

Commit

Permalink
commit at 23:31:28
Browse files Browse the repository at this point in the history
  • Loading branch information
bkleinen committed Jul 1, 2024
1 parent ff5635e commit 2d260c0
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/only-change-own-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,19 @@ jobs:
with:
submodules: false
fetch-depth: 1


- name: curl2
run: |
curl https://patch-diff.githubusercontent.com/raw/htw-imi-showtime/showtime-website/pull/350.diff
- name: info
run: |
echo ${{ toJSON(github.event.pull_request) }}
- name: "curl"
continue-on-error: true
id: diff_files
run: |
curl ${{ github.event.pull_request.diff_url }}
diff_file=https://patch-diff.githubusercontent.com/raw/htw-imi-showtime/showtime-website/pull/350.diff
# curl ${{ github.event.pull_request.diff_url }}
echo "$diff_file"
echo "----------------------"
changed_files=$(echo $diff_file | grep -e "diff --git" | sed -e "s#diff --git a/##g")
Expand Down

0 comments on commit 2d260c0

Please sign in to comment.