diff --git a/.github/workflows/ToolUpdate.yml b/.github/workflows/ToolUpdate.yml index 78667ef7..cd42054b 100644 --- a/.github/workflows/ToolUpdate.yml +++ b/.github/workflows/ToolUpdate.yml @@ -3,11 +3,17 @@ name: Update Dependency on: # Trigger on commits to any branch and manual trigger workflow_dispatch: # Allows manual trigger push: - branches: - - '**' # Trigger on commits to any branch + paths: + - 'Resources/**' + branches-ignore: + - 'main**' + pull_request: + branches: + - 'main**' schedule: - cron: '0 0 * * *' # Runs at 00:00 UTC every day + permissions: contents: write pull-requests: write