Compare commits

..

No commits in common. '21a15496f21e2a08ee58392e7cb672b24c545bca' and '1ba0b3f7914fcac2e49c773fa2595c3be56af6ca' have entirely different histories.

@ -18,7 +18,6 @@ jobs:
AUTO_COMMIT_MESSAGE: Auto Update by GitHub Actions
AUTO_COMMIT_AUTHOR: github-actions[bot]
AUTO_COMMIT_EMAIL: github-actions[bot]@users.noreply.github.com
AUTO_COMMIT_NO_UPDATE: No update, nothing to commit
steps:
- uses: actions/checkout@v3
@ -37,5 +36,5 @@ jobs:
git config --global user.name "${{ env.AUTO_COMMIT_AUTHOR }}"
git config --global user.email "${{ env.AUTO_COMMIT_EMAIL }}"
git add README.md github-emoji.json
git commit -m "${{ env.AUTO_COMMIT_MESSAGE }}" || echo "${{ env.AUTO_COMMIT_NO_UPDATE }}"
git commit -m "${{ env.AUTO_COMMIT_MESSAGE }}"
git push

@ -2778,6 +2778,3 @@ This list includes all the usable Emoji icon shortcodes in GitHub Markdown. The
[:top: Back to Top](#github-emoji-icon-list)
:heart: :orange_heart: :yellow_heart: :green_heart: :blue_heart: :purple_heart: :brown_heart: :black_heart: :white_heart:

@ -1,9 +1,5 @@
# Changelog
### Version 1.0.4
- Fix GitHub Actions workflow `auto-update` (failed when no update)
- Add credits
### Version 1.0.3b
- Quick fix minor bug

@ -1,3 +0,0 @@
# :star: Credits :sparkles:
- ts-node ([https://github.com/TypeStrong/ts-node](https://github.com/TypeStrong/ts-node))
- axios ([https://github.com/axios/axios](https://github.com/axios/axios))

@ -1,6 +1,6 @@
/**
* GitHub Emoji Icon List Markdown Generator
* - Version: 1.0.4
* - Version: 1.0.3b
* - Developer: NXU (GitHub: @jasonfoknxu)
* - https://github.com/jasonfoknxu/github-emoji-icon-list
*/
@ -174,10 +174,6 @@ import * as Utils from './utilities';
markdown += Utils.anchor(':top: Back to Top', 'github-emoji-icon-list');
markdown += `\n`;
// end
markdown += `\n\n`;
markdown += `:heart: :orange_heart: :yellow_heart: :green_heart: :blue_heart: :purple_heart: :brown_heart: :black_heart: :white_heart:`;
// Add Table of Contents
markdown = tableOfContents + '\n\n' + markdown;

Loading…
Cancel
Save