Skip to content

chore(deps-dev): bump husky from 9.1.4 to 9.1.6 in /template #427

chore(deps-dev): bump husky from 9.1.4 to 9.1.6 in /template

chore(deps-dev): bump husky from 9.1.4 to 9.1.6 in /template #427

Workflow file for this run

name: pull-request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Pull Request Details
run: |
echo "Pull Request Creator: ${{ github.event.pull_request.user.login }}"
echo "Pull Request title: ${{ github.event.pull_request.title }}"
echo "Pull Request number: ${{ github.event.pull_request.number }}"
echo "Pull Request url: ${{ github.event.pull_request.html_url }}"
echo "Pull Request body: ${{ github.event.pull_request.body }}"
echo "Assigned labels: " ${{ join(github.event.pull_request.labels.*.name) }}
echo "Assignees: " ${{ join(github.event.pull_request.assignees.*.login) }}
- name: Google Chat Notification
run: |
curl --location --request POST '${{ secrets.GOOGLECHAT }}' \
--header 'Content-Type: application/json' \
--data-raw '{
"cards": [
{
"header": {
"title": "Pull Request No: #${{ github.event.pull_request.number }}"
},
"sections": [
{
"widgets": [
{
"keyValue": {
"topLabel": "Creator",
"content": "${{ github.event.pull_request.user.login }}"
},
},
{
"keyValue": {
"topLabel": "Title",
"content": "${{ github.event.pull_request.title }}"
}
},
{
"keyValue": {
"topLabel": "Description",
"content": "${{ github.event.pull_request.body }}"
}
},
{
"buttons": [
{
"textButton": {
"text": "Open Pull Request",
"onClick": {
"openLink": {
"url": "${{ github.event.pull_request.html_url }}"
}
},
"color": {"red": 1, "green": 0,"blue": 0,"alpha": 0.5}
}
}
]
}
]
}
]
}
]
}'