PlatformIO Dependabot #397
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: PlatformIO Dependabot | |
| on: | |
| workflow_dispatch: # option to manually trigger the workflow | |
| pull_request: # option to run on pull-request | |
| schedule: | |
| # Runs every day at 00:00 | |
| - cron: '0 0 * * *' | |
| jobs: | |
| dependabot: | |
| runs-on: ubuntu-latest | |
| name: run PlatformIO Dependabot | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: run PlatformIO Dependabot | |
| uses: peterus/platformio_dependabot@ee459e446a090c4894b1354a3b85bc064797fd2b # Using latest Commit SHA for v1.2.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |