[RFE] RPM spec Release macro #43
Workflow file for this run
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: issue-announce | |
on: | |
issues: | |
types: [opened] | |
permissions: | |
issues: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ISSUE_TITLE: "${{ github.event.issue.title }}" | |
steps: | |
- name: Git Issue Details | |
run: | | |
export issue_title=$(echo "$ISSUE_TITLE" | sed -e "s/'//g" -e 's/"//g') | |
echo "Issue creator: ${{ github.event.issue.user.login }}" | |
echo "Issue title: $ISSUE_TITLE" | |
echo "Issue number: ${{ github.event.issue.number }}" | |
echo "Issue url: ${{ github.event.issue.html_url }}" | |
echo "Using issue_title: $issue_title" | |
- name: Google Chat Notification | |
run: | | |
export issue_title=$(echo "$ISSUE_TITLE" | sed -e "s/'//g" -e 's/"//g') | |
curl --location --request POST '${{ secrets.WEBHOOK }}' \ | |
--header 'Content-Type: application/json; charset=UTF-8' \ | |
--data "{'text': '[${{ github.event.issue.number }}] ${{ github.event.issue.html_url }} $issue_title (${{ github.event.issue.user.login }})'}" |