Skip to content

Commit 28bd9ce

Browse files
committed
fixed cronjobs I think
1 parent 0434001 commit 28bd9ce

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/post.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- main
77
schedule:
8-
- cron: '*/10 * * * *'
98
- cron: '20 1,14,18,22 * * *'
109

1110
jobs:

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import tseslint from 'typescript-eslint';
33

44
/** @type {import('eslint').Linter.Config[]} */
55
export default [
6-
{ files: ['**/*.{js,mjs,cjs,ts}'] },
6+
{ files: ['src/**/*.{js,mjs,cjs,ts}'], ignores: ['node_modules/', 'dist/'] },
77
pluginJs.configs.recommended,
88
...tseslint.configs.recommendedTypeChecked,
99
{

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { LOCAL } from './lib/constants';
66

77
dayjs.extend(localizedFormat);
88

9-
109
const dryRun = LOCAL;
1110
const text = await Bot.run(generateField, { dryRun });
1211

0 commit comments

Comments
 (0)