We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
changed_files.txt
1 parent d375c32 commit da5c8caCopy full SHA for da5c8ca
action.yml
@@ -35,13 +35,15 @@ runs:
35
id: files
36
run: |
37
git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep "^articles/.*\.md$" > changed_files.txt
38
+ echo "Changed markdown files:"
39
+ cat changed_files.txt
40
continue-on-error: true
41
shell: bash
42
43
- name: Convert Zenn articles to Qiita format
44
45
for file in $(cat changed_files.txt); do
- sh bin/ztoq.sh "$file"
46
+ bash bin/ztoq.sh "$file"
47
done
48
49
if: steps.files.outcome == 'success'
0 commit comments