chore(deps): bump wasi-common from 35.0.0 to 40.0.0 #1610
Workflow file for this run
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: 🤖 Dependabot automation | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| repository-projects: write | |
| jobs: | |
| dependabot-automation: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor == 'dependabot[bot]' }} | |
| steps: | |
| - name: Dependabot metadata | |
| id: metadata | |
| uses: dependabot/fetch-metadata@v1.3.5 | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Approve & enable auto-merge for Dependabot PR | |
| if: | | |
| steps.metadata.outputs.update-type == 'version-update:semver-patch' | |
| run: | | |
| gh pr review --approve "$PR_URL" | |
| gh pr edit "$PR_URL" -t "(auto merged) $PR_TITLE" | |
| env: | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # This is needed otherwise the pr edit fails for some reason | |
| # see https://github.com/cli/cli/issues/7558 | |
| GH_REPO: ${{ github.repository_owner }}/${{ github.event.repository.name }} | |
| - name: Automerge | |
| id: automerge | |
| uses: pascalgn/automerge-action@v0.15.6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| MERGE_LABELS: dependencies | |
| MERGE_REQUIRED_APPROVALS: 1 | |
| MERGE_RETRY_SLEEP: 300000 | |
| MERGE_DELETE_BRANCH: true | |
| MERGE_FILTER_AUTHOR: dependabot[bot] |