Merge pull request #1322 from Mindful-AI-Assistants/FabianaCampanari-… #181
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: Open new issue | ||
on: workflow_dispatch | ||
jobs: | ||
open-issue: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
issues: write | ||
steps: | ||
- run:| | ||
gh issue --repo ${{ github.repository }} \ | ||
create --title "Issue title" --body "Issue body" | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||