Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/comment-on-issue.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Comment on New Issue"
name: "Comment on the Issue"

on:
issues:
Expand Down
13 changes: 0 additions & 13 deletions .github/workflows/echo.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/format-issue-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
- name: Format issue title
uses: recursivezero/action-club/.github/actions/format-issue-title@v0.2.57
with:
prefix: RTY
prefix: ${{ vars.PROJECT_PREFIX }}
24 changes: 24 additions & 0 deletions .github/workflows/issue-branch-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Issue Sync with Branch
run-name: Notify whenever a branch created using issue title

on:
create:
ref_type: branch # Ensure to trigger when a branch is created

permissions:
issues: write # Required to comment and add labels
contents: read # Required to read the repo metadata

jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Link Branch to Issue
# Point this to your centralized repository
uses: recursivezero/action-club/.github/actions/branch-notify@v0.2.57
with:
issue_prefix: ${{ vars.PROJECT_PREFIX }} # e.g., "RTY"
branch_name: ${{ github.event.ref }}