Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-01-20 14:06:43 +01:00
parent e872c7ebaf
commit 21885379c1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ name: 'goalie: run cron'
on:
schedule:
- cron: '* * * * *'
jobs:
label:
runs-on: ubuntu-latest
+1 -1
View File
@@ -69,7 +69,7 @@ const getRepoEvents = async ({ github, context, pull_number }) => {
return events
.sort((a, b) => new Date(a.updated_at) - new Date(b.updated_at))
.filter(({ user }) => user ? !user.login.includes('[bot]') : false);
.filter(({ user }) => (user ? !user.login.includes('[bot]') : false));
};
module.exports = async ({ github, context, core }) => {