Add i2s max98357a & emmc_bus4 nandflash overlay on rock-pi-s #208
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
| jobs: | |
| dependabot: | |
| if: "github.actor == 'dependabot[bot]'" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - id: "metadata" | |
| name: "Dependabot metadata" | |
| uses: "dependabot/fetch-metadata@v3" | |
| with: | |
| github-token: "${{ secrets.GITHUB_TOKEN }}" | |
| - env: | |
| GH_TOKEN: "${{secrets.GITHUB_TOKEN}}" | |
| PR_URL: "${{github.event.pull_request.html_url}}" | |
| name: "Approve a PR" | |
| run: | | |
| gh pr review --approve "$PR_URL" | |
| - continue-on-error: true | |
| env: | |
| GH_TOKEN: "${{secrets.GIT_PUSH_TOKEN}}" | |
| PR_URL: "${{github.event.pull_request.html_url}}" | |
| name: "Approve a PR with private token" | |
| run: | | |
| gh pr review --approve "$PR_URL" | |
| - env: | |
| GH_TOKEN: "${{secrets.GITHUB_TOKEN}}" | |
| PR_URL: "${{github.event.pull_request.html_url}}" | |
| name: "Enable auto-merge for Dependabot PRs" | |
| run: | | |
| gh pr merge --auto --merge "$PR_URL" | |
| name: "Dependabot auto-merge" | |
| "on": | |
| pull_request: {} | |
| permissions: | |
| contents: "write" | |
| pull-requests: "write" |