provide interfaces for high level languages #4
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: issue-open | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
issue-open-comment: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout the codebase | |
uses: actions/checkout@v3 | |
- name: Render comment template | |
id: render_template | |
uses: chuhlomin/[email protected] | |
with: | |
template: .github/issue_open_comment.md | |
vars: | | |
author: ${{ github.event.issue.user.login }} | |
- name: Create a bot comment | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
repository: AngryMaciek/hypercomplex | |
issue-number: ${{ github.event.issue.number }} | |
body: ${{ steps.render_template.outputs.result }} |