build(deps): bump third_party/RapidWright from ccb9c26
to 398b79f
#1488
Workflow file for this run
This file contains 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: Automerge | |
concurrency: | |
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
Tests: | |
if: ${{ !(github.event_name != 'pull_request' && github.actor == 'dependabot[bot]') }} | |
uses: ./.github/workflows/Tests.yml | |
Suite: | |
if: ${{ !(github.event_name != 'pull_request' && github.actor == 'dependabot[bot]') }} | |
uses: ./.github/workflows/Suite.yml | |
secrets: | |
GCP_STORAGE_BUCKET: ${{ secrets.GCP_STORAGE_BUCKET }} | |
Automerge: | |
needs: | |
- Tests | |
- Suite | |
if: github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
name: Automerge dependabot PRs | |
permissions: | |
contents: write | |
steps: | |
- name: Auto-merge Dependabot PR | |
run: GITHUB_TOKEN='${{ github.token }}' gh pr merge '${{ github.event.pull_request.html_url }}' --squash |