Skip to content

Commit

Permalink
fix(ci): adopt Ana06/get-changed-files action fork
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
  • Loading branch information
jasondellaluce authored and poiana committed Jul 5, 2023
1 parent e266041 commit 4126981
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Get changed files
id: changed-files
if: github.event_name == 'pull_request'
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.2.0
with:
format: space-delimited
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -33,7 +33,7 @@ jobs:
run: |
# if we skip changed-files because we're not in a pull-request,
# then we consider all the rules contained in the repo
all_files=${{ steps.changed-files.outputs.all }}
all_files="${{ steps.changed-files.outputs.all }}"
values=""
if [ -z $all_files ]; then
values=$(ls rules/*.yaml)
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
run: git fetch --tags origin

- name: Get changed files
uses: jitterbit/get-changed-files@v1
uses: Ana06/get-changed-files@v2.2.0
id: changed
with:
format: space-delimited
Expand Down

0 comments on commit 4126981

Please sign in to comment.