-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: issue id in create branch script 12 (#15)
- Loading branch information
1 parent
01778b9
commit e48201a
Showing
4 changed files
with
52 additions
and
32 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1 @@ | ||
> Always leave the code behind in a better state than you found it. | ||
Closes #<ISSUE_ID> | ||
> Always leave the code behind in a better state than you found it. |
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,46 @@ | ||
name: link pr to issue | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, reopened] | ||
branch_protection_rule: | ||
types: [edited] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
link-issue: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Extract branch name | ||
shell: bash | ||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
run: | | ||
issue_id=$(echo ${{ env.BRANCH_NAME }} | grep -oE '[0-9]+$') | ||
echo "issue_id=$issue_id" >> $GITHUB_ENV | ||
- name: Check if Issue ID Exists | ||
id: check | ||
run: | | ||
if [ -z "${{ env.issue_id }}" ]; then | ||
echo "No issue ID found in branch name." | ||
exit 1 | ||
fi | ||
- name: Update PR Description | ||
if: steps.check.outcome == 'success' | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
gh pr edit ${{ github.event.pull_request.number }} --body "$(cat << EOF | ||
> Always leave the code behind in a better state than you found it. | ||
Closes #${{ env.issue_id }} | ||
EOF | ||
)" |
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