Compare commits

..

2 Commits

Author SHA1 Message Date
github-actions[bot] 21a15496f2 Auto Update by GitHub Actions
3 years ago
nxu 3bb6aa4b34 Version 1.0.4
3 years ago

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

@ -2778,3 +2778,6 @@ This list includes all the usable Emoji icon shortcodes in GitHub Markdown. The
[:top: Back to Top](#github-emoji-icon-list) [: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,5 +1,9 @@
# Changelog # Changelog
### Version 1.0.4
- Fix GitHub Actions workflow `auto-update` (failed when no update)
- Add credits
### Version 1.0.3b ### Version 1.0.3b
- Quick fix minor bug - Quick fix minor bug

@ -0,0 +1,3 @@
# :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 * GitHub Emoji Icon List Markdown Generator
* - Version: 1.0.3b * - Version: 1.0.4
* - Developer: NXU (GitHub: @jasonfoknxu) * - Developer: NXU (GitHub: @jasonfoknxu)
* - https://github.com/jasonfoknxu/github-emoji-icon-list * - https://github.com/jasonfoknxu/github-emoji-icon-list
*/ */
@ -174,6 +174,10 @@ import * as Utils from './utilities';
markdown += Utils.anchor(':top: Back to Top', 'github-emoji-icon-list'); markdown += Utils.anchor(':top: Back to Top', 'github-emoji-icon-list');
markdown += `\n`; 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 // Add Table of Contents
markdown = tableOfContents + '\n\n' + markdown; markdown = tableOfContents + '\n\n' + markdown;

Loading…
Cancel
Save