chore(deps): bump github.com/ViBiOh/auth/v2 from 2.20.4 to 2.20.5 #556
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: Git | |
permissions: | |
actions: none | |
checks: none | |
contents: read | |
deployments: none | |
issues: none | |
packages: none | |
pages: none | |
pull-requests: none | |
repository-projects: none | |
security-events: none | |
on: | |
- pull_request | |
jobs: | |
build: | |
name: Branch is clean | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Fetch branches | |
run: | | |
git fetch --no-tags --prune origin "+refs/heads/${BASE}:refs/remotes/origin/${BASE}" | |
env: | |
BASE: ${{ github.base_ref }} | |
- name: Check commits | |
env: | |
BASE: origin/${{ github.base_ref }} | |
HEAD: HEAD | |
run: | | |
curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap.sh" | bash -s -- "-c" "git_branch_clean.sh" | |
scripts/git_branch_clean.sh "${BASE}" "${HEAD}" |