Ingredients don't have thumbnails if image format is other than JPG and PNG #261
This file contains hidden or 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: Labeling ticket "Done" | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
label_issues: | |
runs-on: ubuntu-latest | |
if: | | |
contains(github.event.issue.labels.*.name, 'status: done') | |
permissions: | |
issues: write | |
steps: | |
- run: 'gh issue close "$NUMBER"' | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ github.event.issue.number }} |