Skip to content

🚀 Release 19/06/2024 #27

🚀 Release 19/06/2024

🚀 Release 19/06/2024 #27

Workflow file for this run

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
});