Skip to content

Commit

Permalink
ci: fetch-feeds: Remove -r git switch
Browse files Browse the repository at this point in the history
Seems to not be supported by the version on GitHub Actions
  • Loading branch information
jbruechert committed Feb 16, 2024
1 parent ca6d83e commit 4c15e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/fetch-feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
subprocess.check_call(["./src/fetch.py", str(feed.absolute())])
case "merge-request":
changed_files = subprocess.check_output(
["git", "diff", "--name-only", "-r", "HEAD^1", "HEAD"]) \
["git", "diff", "--name-only", "HEAD^1", "HEAD"]) \
.decode().splitlines()

changed_feeds = [f for f in changed_files if
Expand Down

0 comments on commit 4c15e27

Please sign in to comment.