Skip to content

Commit

Permalink
feat(ci): Add CIB Workflow
Browse files Browse the repository at this point in the history
Signed-off-by: macinsight <gh@macinsight.net>
  • Loading branch information
macinsight committed Nov 28, 2023
1 parent 6e0bc16 commit 3b3d802
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 29 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/create-branch-issue.yml

This file was deleted.

17 changes: 17 additions & 0 deletions .github/workflows/create-issue-branch.yml
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 }}

0 comments on commit 3b3d802

Please sign in to comment.