-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: macinsight <[email protected]>
- Loading branch information
1 parent
6e0bc16
commit 3b3d802
Showing
2 changed files
with
17 additions
and
29 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
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: [ assigned ] | ||
# 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 | ||
uses: robvanderleek/create-issue-branch@main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |