⚙️ Socket Fix Auto Pull Request #40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ⚙️ Socket Fix Auto Pull Request | |
# Dependencies: | |
# - SocketDev/socket-registry/.github/workflows/socket-auto-pr.yml | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Run daily at midnight UTC | |
- cron: '0 12 * * *' # Run daily at noon UTC | |
workflow_dispatch: | |
inputs: | |
debug: | |
description: 'Enable debug output' | |
required: false | |
default: '0' | |
type: string | |
options: | |
- '0' | |
- '1' | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
socket-auto-pr: | |
uses: SocketDev/socket-registry/.github/workflows/socket-auto-pr.yml@17c8e09407f67149512e95e082a9c77dfe8e27a4 # main | |
with: | |
debug: ${{ inputs.debug }} | |
autopilot: true | |
secrets: | |
socket_cli_api_token: ${{ secrets.SOCKET_CLI_API_TOKEN }} | |
gh_token: ${{ secrets.GITHUB_TOKEN }} |