chore(deps): bump fastify/github-action-merge-dependabot from 3.10 to 3.11 #264
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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup chezmoi | |
run : sudo snap install chezmoi --classic | |
- name: Install dotfiles | |
run: chezmoi apply -S . -v | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup chezmoi | |
run : choco install chezmoi | |
- name: Install dotfiles | |
run: chezmoi apply -S . -v | |
dependabot-automerge: | |
needs: [test-ubuntu, test-windows] | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: fastify/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |