[Release] v1.2.0 🚀 - 22/10/2024 #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: Set PR title | |
on: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
set-title: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set PR title | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const { owner, repo, number: pull_number } = context.issue; | |
const pr = context.payload.pull_request; | |
const body = pr.body; | |
const branchName = pr.head.ref; | |
const [type, id, description] = branchName.split('/'); | |
const title = `[${id}] ${description.split("-").join(' ')}`; | |
const format = (str, ...args) => { | |
return str.replace(/{(\d+)}/g, (match, number) => { | |
return typeof args[number] !== 'undefined' ? args[number] : match; | |
}); | |
}; | |
const templateTitle = description.split("-").join(' ').replace(/\b\w/g, function(l){ return l.toUpperCase() }); | |
const taskCode = id.split("CU-").join(''); | |
const isFeature = type === 'feature' ? 'x' : ' '; | |
const isBugfix = ["bugfix", "hotfix"].includes(type) ? 'x' : ' '; | |
const updatedBody = format(body, templateTitle, id, taskCode, isFeature, isBugfix); | |
await github.rest.pulls.update({ | |
owner, | |
repo, | |
pull_number, | |
title, | |
body: updatedBody | |
}); |