[Built with Eleventy] I built something! #2087
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Convert Issues to JSON Data | |
on: | |
issues: | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#issues | |
types: | |
- opened | |
- edited | |
- reopened | |
- labeled | |
jobs: | |
update_library: | |
runs-on: ubuntu-latest | |
name: Convert New built-with-eleventy Issue to Sites Data | |
# only continue if issue has "built-with-eleventy" label | |
# require an `approved` label for moderation | |
if: contains( github.event.issue.labels.*.name, 'built-with-eleventy') && contains( github.event.issue.labels.*.name, 'approved') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: GitHub Issue to JSON | |
uses: zachleat/[email protected] | |
with: | |
# This controls where the JSON files are generated | |
folder: "built-with-eleventy/" | |
# This tells the action which GitHub Issue Form template file to use | |
issue-template: "built-with-eleventy.yml" | |
# This controls which property we use to key the file name hash off of (values should be unique in your data set) | |
hash-property-name: "url" | |
- name: Commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add * | |
git commit -m "Adding data file for #${{ env.IssueNumber }}" | |
git push | |
- name: Close issue | |
uses: peter-evans/close-issue@v1 | |
with: | |
issue-number: "${{ env.IssueNumber }}" | |
comment: "Thank you! Your data file has been added!" |