Skip to content

doing some github checkout investigations #3

doing some github checkout investigations

doing some github checkout investigations #3

Workflow file for this run

name: git-testing
on:
pull_request:
branches: [ master ]
workflow_dispatch:
concurrency:
group: ${{ github.ref }}/git-testing
cancel-in-progress: true
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
fetch-depth: 0

Check failure on line 17 in .github/workflows/git-testing.yaml

View workflow run for this annotation

GitHub Actions / git-testing

Invalid workflow file

The workflow is not valid. .github/workflows/git-testing.yaml (Line: 17, Col: 9): Unexpected value 'fetch-depth' .github/workflows/git-testing.yaml (Line: 18, Col: 9): Unexpected value 'fetch-tags'
fetch-tags: true
- name: run git commands to introspect the git repository
run: |
set -x
git status
git branch --list --all
git tag --list
git remote --verbose
git log --stat