Definition file for apptainer #113
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: issues | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
add-comment: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Install FAQtory | |
run: pip install FAQtory | |
- name: Run Suggest | |
env: | |
TITLE: ${{ github.event.issue.title }} | |
run: faqtory suggest "$TITLE" > suggest.md | |
- name: Read suggest.md | |
id: suggest | |
uses: juliangruber/read-file-action@v1 | |
with: | |
path: ./suggest.md | |
- name: Suggest FAQ | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: ${{ steps.suggest.outputs.content }} |