Bump Microsoft.AspNetCore.Http.Connections.Common from 8.0.7 to 8.0.10 #83
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: Create Issue Branch | |
on: | |
# The issue.opened event below is only needed for the "immediate" mode. | |
# The issue.assigned event below is only needed for the default ("auto") mode. | |
issues: | |
types: [ opened, assigned ] | |
# The issue_comment.created event below is only needed for the ChatOps mode. | |
issue_comment: | |
types: [ created ] | |
# The pull_request events below are only needed for pull-request related features. | |
pull_request: | |
types: [ opened, closed ] | |
jobs: | |
create_issue_branch_job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Issue Branch | |
id: Create_Issue_Branch | |
uses: robvanderleek/create-issue-branch@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |