mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 21:28:48 +00:00
57e6fd5d1f
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
698 B
YAML
26 lines
698 B
YAML
name: Remove Cargo.lock changes
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
paths:
|
|
- 'Cargo.lock'
|
|
|
|
jobs:
|
|
remove-cargo-lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Remove Cargo.lock changes
|
|
run: |
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
git checkout ${{ github.head_ref }}
|
|
git reset origin/${{ github.base_ref }} -- Cargo.lock
|
|
git commit -m "Remove changes to Cargo.lock" || echo "No changes to commit"
|
|
git push origin ${{ github.head_ref }} --force
|