Skip to content

Commit

Permalink
Force some repo activity so that the GitHub action is not disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
jvelo committed Jun 22, 2022
1 parent 3abc85f commit a44c9df
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/twitter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Twitter things

on:
schedule:
- cron: "37 13 * * *"
- cron: "37 12 * * *"

jobs:
get-likes:
Expand Down
32 changes: 32 additions & 0 deletions schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
create table jvelo_at.twitter_like
(
id varchar(20) primary key,
created_at timestamp not null,
text text,
truncated bool default FALSE,
entities jsonb,
extended_entities jsonb,
is_quote_status bool,
quoted_status json,
quoted_status_id bigint,
source text,
in_reply_to_status_id bigint,
in_reply_to_user_id bigint,
in_reply_to_screen_name text,
user_data json,
retweet_count int,
favorite_count int,
favorited bool,
retweeted bool,
possibly_sensitive bool,
lang varchar(10)
);

comment on table jvelo_at.twitter_like is 'likes from my twitter account';

create index twitter_like_created_at_index
on jvelo_at.twitter_like (created_at);

create index twitter_like_lang_index
on jvelo_at.twitter_like (lang);

1 comment on commit a44c9df

@vercel
Copy link

@vercel vercel bot commented on a44c9df Jun 22, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

jvelo-at – ./

jvelo-at-git-master-jvelo.vercel.app
jvelo-at.vercel.app
jvelo-at-jvelo.vercel.app
jvelo.at

Please sign in to comment.