-
Notifications
You must be signed in to change notification settings - Fork 0
182 lines (154 loc) · 6.95 KB
/
opencatalogi-publish.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
name: PublicCode and PublicOrganization Check and Update
on:
push:
branches:
- main
jobs:
check-and-update:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Check and Update publiccode.yaml
if: (!contains(github.repository, '.github'))
run: |
REPO_NAME="${{ github.event.repository.name }}"
REPO_DESC="${{ github.event.repository.description }}"
REPO_URL="${{ github.event.repository.html_url }}"
REPO_HOMEPAGE="${{ github.event.repository.homepage }}"
#REPO_TOPICS="${{ github.event.repository.topics }}"
REPO_LICENSE="${{ github.event.repository.license.key }}"
REPO_CREATED_AT="${{ github.event.repository.created_at }}"
ORGANISATION_NAME="${{ github.event.organization.login }}"
ORGANISATION_DESCRIPTION="${{ github.event.organization.description }}"
ORGANISATION_GITID="${{ github.event.organization.id}}"
ORGANISATION_URL="${{ github.event.organization.login }}"
ORGANISATION_AVATAR="${{ github.event.organization.avatar_url }}"
echo "Installing PyYAML..."
pip install PyYAML
echo "Updating publiccode.yaml..."
python - <<END
import yaml
import json
from datetime import datetime
# Read existing publiccode.yaml
try:
with open("publiccode.yaml", "r") as f:
data = yaml.safe_load(f)
except FileNotFoundError:
data = {}
# Convert created_at to date format
# created_at_date = datetime.fromisoformat("$REPO_CREATED_AT".replace("Z", "+00:00")).strftime('%Y-%m-%d')
created_at_date = datetime.now().strftime('%Y-%m-%d')
# Convert topics JSON string to Python list and then to comma-separated string
# Update or append values
if "$REPO_NAME" != "null" and "$REPO_NAME":
data['name'] = "$REPO_NAME"
if "$REPO_URL" != "null" and "$REPO_URL":
data['url'] = "$REPO_URL"
if "$REPO_DESC" != "null" and "$REPO_DESC":
data['description'] = "$REPO_DESC"
if "$REPO_HOMEPAGE" != "null" and "$REPO_HOMEPAGE":
data['url'] = "$REPO_HOMEPAGE"
#if "$REPO_TOPICS" != "null" and "$REPO_TOPICS":
# data['topics'] = "$REPO_TOPICS"
if "$REPO_LICENSE" != "null" and "$REPO_LICENSE":
data['license'] = "$REPO_LICENSE"
# Add releaseDate if not present
if 'releaseDate' not in data:
data['releaseDate'] = created_at_date
# Create or update nested 'organisation' array
if 'organisation' not in data:
data['organisation'] = {}
if "$ORGANISATION_NAME" != "null" and "$ORGANISATION_NAME":
data['organisation']['name'] = "$ORGANISATION_NAME"
if "$ORGANISATION_AVATAR" != "null" and "$ORGANISATION_AVATAR":
data['organisation']['logo'] = "$ORGANISATION_AVATAR"
if "$ORGANISATION_URL" != "null" and "$ORGANISATION_URL":
data['organisation']['url'] = "$ORGANISATION_URL"
if "$ORGANISATION_DESCRIPTION" != "null" and "$ORGANISATION_DESCRIPTION":
data['organisation']['description'] = "$ORGANISATION_DESCRIPTION"
# Create or update nested 'nl' array
if 'nl' not in data:
data['nl'] = {}
# Write updated publiccode.yaml
with open("publiccode.yaml", "w") as f:
yaml.safe_dump(data, f)
END
- name: Check and Update opencatalogi.yaml
if: (contains(github.repository, '.github'))
run: |
REPO_NAME="${{ github.event.repository.name }}"
REPO_DESC="${{ github.event.repository.description }}"
REPO_URL="${{ github.event.repository.html_url }}"
REPO_HOMEPAGE="${{ github.event.repository.homepage }}"
#REPO_TOPICS="${{ github.event.repository.topics }}"
REPO_LICENSE="${{ github.event.repository.license.key }}"
REPO_CREATED_AT="${{ github.event.repository.created_at }}"
ORGANISATION_NAME="${{ github.event.organization.login }}"
ORGANISATION_DESCRIPTION="${{ github.event.organization.description }}"
ORGANISATION_GITID="${{ github.event.organization.id}}"
ORGANISATION_URL="${{ github.event.organization.login }}"
ORGANISATION_AVATAR="${{ github.event.organization.avatar_url }}"
echo "Installing PyYAML..."
pip install PyYAML
echo "Updating openCatalogi.yaml..."
python - <<END
import yaml
import json
from datetime import datetime
# Read existing openCatalogi.yaml
try:
with open("openCatalogi.yaml", "r") as f:
data = yaml.safe_load(f)
except FileNotFoundError:
data = {}
if "$ORGANISATION_NAME" != "null" and "$ORGANISATION_NAME":
data['name'] = "$ORGANISATION_NAME"
if "$ORGANISATION_AVATAR" != "null" and "$ORGANISATION_AVATAR":
data['logo'] = "$ORGANISATION_AVATAR"
if "$ORGANISATION_URL" != "null" and "$ORGANISATION_URL":
data['url'] = "$ORGANISATION_URL"
if "$ORGANISATION_DESCRIPTION" != "null" and "$ORGANISATION_DESCRIPTION":
data['description'] = "$ORGANISATION_DESCRIPTION"
# Create or update nested 'nl' array
if 'nl' not in data:
data['nl'] = {}
# Write updated openCatalogi.yaml
with open("openCatalogi.yaml", "w") as f:
yaml.safe_dump(data, f)
END
- name: Commit changes
if: (!contains(github.repository, '.github'))
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add publiccode.yaml
git commit -m "${{ github.workflow }}" || echo "No changes to commit"
git push
- name: Commit changes
if: (contains(github.repository, '.github'))
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git pull
git add openCatalogi.yaml
git commit -m "${{ github.workflow }}" || echo "No changes to commit"
git push
publish-to-opencatalogi:
runs-on: ubuntu-latest
needs: check-and-update
steps:
- name: Post Repository URL to OpenCatalogi API
run: |
curl -X POST "https://api.opencatalogi.nl/api/github_events" \
-H "Content-Type: application/json" \
-d '{
"repository": {
"html_url": "'${{ github.event.repository.html_url }}'"
}
}'