Skip to content

Commit

Permalink
Add a comment to clarify automation
Browse files Browse the repository at this point in the history
  • Loading branch information
amirhakimnejad committed Jul 26, 2024
1 parent 9f8bc90 commit fdc7710
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/github-actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install html2text
- name: Create empty markdown file
run: |
echo "This file generates automatically from https://flyingacorn.studio/index.html as part of a GitHub Action practice\n" > 'profile/README.md'
- name: Generate Markdown
run: html2text --ignore-images --single-line-break --wrap-list-items -d index.html > 'profile/README.md'
run: html2text --ignore-images --single-line-break --wrap-list-items -d index.html >> 'profile/README.md'
- name: verify changes
id: verify_changes
run: |
Expand Down

0 comments on commit fdc7710

Please sign in to comment.