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.
working-directory
1 parent 0c3d49c commit 281d916Copy full SHA for 281d916
action.yml
@@ -30,6 +30,8 @@ runs:
30
- name: Install dependencies
31
run: npm install
32
shell: bash
33
+ with:
34
+ working-directory: ${{ github.action_path }}
35
36
- name: Get changed markdown files
37
id: files
@@ -39,13 +41,17 @@ runs:
39
41
cat changed_files.txt
40
42
continue-on-error: true
43
44
45
46
47
- name: Convert Zenn articles to Qiita format
48
run: |
49
for file in $(cat changed_files.txt); do
50
bash bin/ztoq.sh "$file"
51
done
52
53
54
55
if: steps.files.outcome == 'success'
56
57
- name: Commit converted Qiita articles
0 commit comments