-
Notifications
You must be signed in to change notification settings - Fork 3k
64 lines (55 loc) · 2 KB
/
CCOA.yml
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
name: CCOA
on:
pull_request_target:
types:
- opened
- reopened
branches:
- dev
permissions:
pull-requests: write
jobs:
add_label_and_comment:
runs-on: ubuntu-latest
steps:
- name: Check current date securely
id: date_check
run: |
# Define the block date (Jan 7, 2025)
BLOCK_DATE=$(date -d "2025-01-07" +%s)
# Get the current date in seconds
CURRENT_DATE=$(date +%s)
# Validate the dates and safely output the result
if [ "$CURRENT_DATE" -lt "$BLOCK_DATE" ]; then
echo "continue=true" >> "$GITHUB_OUTPUT"
else
echo "continue=false" >> "$GITHUB_OUTPUT"
fi
- name: Comment on PR
if: steps.date_check.outputs.continue == 'true'
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
// Fetch existing comments
const comments = await github.rest.issues.listComments({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
});
// Check if the specific comment already exists
const existingComment = comments.data.find(comment =>
comment.body.includes("⚠️**Your changes in this PR will be released on Jan 14, 2025 due to CCOA (extend to Jan 6, 2025)**")
);
if (existingComment) {
console.log("Comment already exists. Skipping...");
} else {
console.log("No comment found. Adding a new one...");
// Add a new comment
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: "⚠️**Your changes in this PR will be released on Jan 14, 2025 due to CCOA (extend to Jan 6, 2025)**",
});
}