Fix README.md to run on ubuntu-latest and install sbt #62
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: Remove snapshot branch | |
on: | |
pull_request_target: | |
types: | |
- closed | |
jobs: | |
delete-pr-branch: | |
runs-on: ubuntu-latest | |
if: github.event.sender.login != 'dependabot[bot]' | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Remove snapshot branch | |
run: git push origin -d snapshots/${{ github.event.number }} || true |