Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanDeMeyer committed May 7, 2024
1 parent 34425f5 commit 9d40cc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,6 @@ jobs:
labels.delete(label);
}
if (labels.size != original.size || [...labels].some(l => !original.has(l))) {
response = await github.rest.issues.setLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: Array.from(labels).map(l => {"name": l}),
});
}
- name: Add please-review label on command in issue comment
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea
if: github.event_name == 'issue_comment' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/please-review')
Expand Down
2 changes: 2 additions & 0 deletions src/basic/time-util.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,8 @@ struct timespec *timespec_store(struct timespec *ts, usec_t u) {
struct timespec *timespec_store_nsec(struct timespec *ts, nsec_t n) {
assert(ts);

log_info("abc");

if (n == NSEC_INFINITY ||
n / NSEC_PER_SEC >= TIME_T_MAX) {
ts->tv_sec = (time_t) -1;
Expand Down

0 comments on commit 9d40cc9

Please sign in to comment.