Skip to content

cloud-only with date sometimes returns current set of hosts in cloud, if no schedules match the date given #41

cloud-only with date sometimes returns current set of hosts in cloud, if no schedules match the date given

cloud-only with date sometimes returns current set of hosts in cloud, if no schedules match the date given #41

Workflow file for this run

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 }})'}"