Merge pull request #2360 from Mindful-AI-Assistants/FabianaCampanari-… #94
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 }} |