Skip to content

Commit

Permalink
Try using changed-files action
Browse files Browse the repository at this point in the history
  • Loading branch information
tkdchen committed Dec 23, 2024
1 parent c282b56 commit 8682a4d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check-task-migration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,21 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v45
- name: show files
env:
ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
echo "added files:"
echo ${ADDED_FILES}
echo
echo "changed files:"
echo ${ALL_CHANGED_FILES}
echo
git logs main
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1
- name: Run check
Expand Down

0 comments on commit 8682a4d

Please sign in to comment.