Error: File .github/ISSUE_TEMPLATE.md could not be found in your project's workspace. #14
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
on: | |
issues: | |
types: | |
- opened | |
name: Add labels when create issue | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
stuff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
project_issue: | |
runs-on: ubuntu-latest | |
steps: | |
- env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
ISSUE_URL: ${{ github.event.issue.html_url }} | |
run: | | |
gh issue edit $ISSUE_URL --add-label "2024" --add-assignee "yeslee-v" |