feat: Event-Driven DA Follower with WebSocket Subscriptions #2538
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 Go Autofix | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| tidy-and-verify: | |
| if: github.actor == 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| - uses: actions/setup-go@v6.3.0 | |
| with: | |
| go-version-file: ./go.mod | |
| - name: Install just | |
| uses: extractions/setup-just@v3 | |
| - name: Run dependency update | |
| run: just deps | |
| - name: Commit and push changes | |
| run: | | |
| if [ -n "$(git status --porcelain)" ]; then | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git add -A | |
| git commit -m "chore: run just deps after Dependabot update" | |
| git push | |
| else | |
| echo "No changes to commit." | |
| fi |