|
16 | 16 |
|
17 | 17 | COMMIT_HOURS = {i: f"{i%12 if i%12 else 12}{'am' if i < 12 else 'pm'} UTC" for i in range(24)} |
18 | 18 |
|
| 19 | +# For the HTML output format |
| 20 | +HTML_REPORT_EMOJIS = { |
| 21 | + "metrics": "📈", |
| 22 | + "urls": "🌐", |
| 23 | + "personal": "🆔", |
| 24 | + "emails": "✉", |
| 25 | + "profiling": "🕵", |
| 26 | + "commits": "📥", |
| 27 | + "keys": "🔑", |
| 28 | + "user_input": "⌨", |
| 29 | + "90d_events": "🗓", |
| 30 | + "releases": "🚀", |
| 31 | + "contributors": "👥", |
| 32 | + "labels": "🔖", |
| 33 | + "comments": "💬", |
| 34 | + "deployments": "🛠", |
| 35 | + "environments": "🌍", |
| 36 | + "branches": "🌿", |
| 37 | + "tags": "🏷", |
| 38 | + "workflows": "🖥", |
| 39 | + "artifacts": "📦", |
| 40 | + "signatures": "✍", |
| 41 | + "association": "🤝", |
| 42 | + "prs": "🔀" |
| 43 | +} |
| 44 | + |
19 | 45 | # Identifies user-supplied data as per: https://securitylab.github.com/resources/github-actions-untrusted-input/ |
20 | 46 | WORKFLOWS_USER_INPUT = { |
21 | 47 | "Issue Title": r'\${{\s*github\.event\.issue\.title\s*}}', |
|
0 commit comments