Skip to content

Commit

Permalink
.github: use another action to retrieve the list of changes
Browse files Browse the repository at this point in the history
Use the most popular action (249 stars at the moment) to retrieve the
list of changed files, because the action we used before only works fine
for branches forked off the tip of the master branch (fast-forward):

jitterbit/get-changed-files#42
  • Loading branch information
mardy committed Apr 14, 2022
1 parent 14123c6 commit f8ba789
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/naming.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- uses: jitterbit/get-changed-files@v1
- uses: tj-actions/changed-files@v18.7
id: files

- name: woke
uses: get-woke/woke-action-reviewdog@v0
uses: get-woke/woke-action-reviewdog@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-check
fail-on-error: true
woke-args: ${{ steps.files.outputs.added_modified }}
woke-args: ${{ steps.files.outputs.all_changed_files }}

0 comments on commit f8ba789

Please sign in to comment.