From 5e0c5bdbe243228b36257c270a93aeb712152cc4 Mon Sep 17 00:00:00 2001 From: Michael Latman Date: Tue, 26 Nov 2024 21:58:32 -0500 Subject: [PATCH] Fix auto PRs and type issue --- .github/workflows/update-packages.yml | 4 ++++ src/types.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/update-packages.yml b/.github/workflows/update-packages.yml index 9dc68bb..18fc26a 100644 --- a/.github/workflows/update-packages.yml +++ b/.github/workflows/update-packages.yml @@ -5,6 +5,10 @@ on: - cron: '0 0 * * *' # Runs daily at midnight workflow_dispatch: # Allows manual triggering +permissions: + contents: write + pull-requests: write + jobs: update-packages: runs-on: ubuntu-latest diff --git a/src/types.ts b/src/types.ts index 00a1742..365125d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3,5 +3,6 @@ export interface Package { description: string; vendor: string; sourceUrl: string; + homepage: string; license: string; } \ No newline at end of file