-
Notifications
You must be signed in to change notification settings - Fork 3
107 lines (106 loc) · 4.36 KB
/
issue-notification.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: Issue Notification
run-name: "Issue #${{ github.event.issue.number }} ${{ github.event.action }}"
on:
issues:
types: [opened, edited, closed, reopened, assigned]
permissions:
contents: read
issues: write
repository-projects: write
jobs:
notify-teams:
name: Notify Teams
environment: hubctl-gh-project
runs-on: ubuntu-latest
steps:
- name: send notification
uses: aliencube/[email protected]
with:
webhook_uri: ${{ secrets.TEAMS_WEBHOOK_URI }}
summary: "Issue ${{ github.event.repository.name }}#${{ github.event.issue.number }}"
title: 'Issue ${{ github.event.action }}: "${{ github.event.issue.title }}"'
sections: '[{"activityTitle": ${{ toJSON(github.event.sender.login) }},"activitySubtitle": ${{ toJSON(github.event.issue.updated_at) }},"activityImage": "${{ github.event.sender.avatar_url }}","facts":[{"name":"Repository","value": ${{ toJSON(github.event.repository.name) }} },{"name":"Issue #","value": ${{ toJSON(github.event.issue.number) }} }],"text": ${{ toJSON(github.event.issue.body) }} }]'
actions: '[{ "@type": "OpenUri", "name": "View in GitHub", "targets": [{ "os": "default", "uri": "http://github.com/epam/${{ github.event.repository.name }}/issues/${{ github.event.issue.number }}" }] }]'
assign-project:
name: Assign Project
runs-on: ubuntu-latest
environment: hubctl-gh-project
if: github.event.issue.state == 'open'
steps:
- name: project-data
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ORGANIZATION: epam
PROJECT_NUMBER: 8
COLUMN_NAME: Todo
run: |
gh api graphql -f query='
query($org: String!, $number: Int!) {
organization(login: $org){
projectV2(number: $number) {
id
fields(first:20) {
nodes {
... on ProjectV2Field {
id
name
}
... on ProjectV2SingleSelectField {
id
name
options {
id
name
}
}
}
}
}
}
}' -f org=$ORGANIZATION -F number=$PROJECT_NUMBER > project_data.json
echo 'PROJECT_ID='$(jq '.data.organization.projectV2.id' project_data.json) >> $GITHUB_ENV
echo 'STATUS_FIELD_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .id' project_data.json) >> $GITHUB_ENV
echo 'TODO_OPTION_ID='$(jq '.data.organization.projectV2.fields.nodes[] | select(.name== "Status") | .options[] | select(.name=="${{ env.COLUMN_NAME }}") |.id' project_data.json) >> $GITHUB_ENV
- name: get issue id
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: echo ISSUE_NUMBER=$(gh api -q '.node_id' "repos/epam/${{ github.event.repository.name }}/issues/${{ github.event.issue.number }}") >> $GITHUB_ENV
- name: Add issue to project
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
item_id="$( gh api graphql -f query='
mutation($project:ID!, $content:ID!) {
addProjectV2ItemById(input: {projectId: $project contentId: $content}) {
item {
id
}
}
}' -f project=$PROJECT_ID -f content=$ISSUE_NUMBER --jq '.data.addProjectV2ItemById.item.id')"
echo 'ITEM_ID='$item_id >> $GITHUB_ENV
- name: current date
run: echo "CURR_DATE=$(date +"%Y-%m-%d")" >> $GITHUB_ENV
- name: set status
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh api graphql -f query='
mutation (
$project: ID!
$item: ID!
$status_field: ID!
$status_value: String!
) {
set_status: updateProjectV2ItemFieldValue(input: {
projectId: $project
itemId: $item
fieldId: $status_field
value: {
singleSelectOptionId: $status_value
}
}) {
projectV2Item {
id
}
}
}' -f project=$PROJECT_ID -f item=$ITEM_ID -f status_field=$STATUS_FIELD_ID -f status_value=${{ env.TODO_OPTION_ID }} --silent