Sha256: 4ca90d438c1afc0c2d1c6eeb86d98a61aba60091490141f13e485fa4bd42051b
Contents?: true
Size: 689 Bytes
Versions: 5
Compression:
Stored size: 689 Bytes
Contents
# Syntax reference: # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions name: Git Checks on: pull_request: types: [opened, synchronize] jobs: # Fixup commits are OK in pull requests, but should generally be squashed # before merging to master, e.g. using `git rebase -i --autosquash master`. # See https://github.com/marketplace/actions/block-autosquash-commits block-fixup: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Block autosquash commits uses: xt0rted/block-autosquash-commits-action@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }}
Version data entries
5 entries across 5 versions & 1 rubygems