https://github.com/ciffelia/git-restore-mtime-action
GitHub Action for running git-restore-mtime
https://github.com/ciffelia/git-restore-mtime-action
actions
Last synced: 30 days ago
JSON representation
GitHub Action for running git-restore-mtime
- Host: GitHub
- URL: https://github.com/ciffelia/git-restore-mtime-action
- Owner: ciffelia
- License: mit
- Created: 2022-10-09T15:14:12.000Z (over 3 years ago)
- Default Branch: release/v1
- Last Pushed: 2022-10-09T15:45:45.000Z (over 3 years ago)
- Last Synced: 2025-01-18T14:46:48.787Z (over 1 year ago)
- Topics: actions
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-restore-mtime-action
GitHub Action for running [git-restore-mtime](https://github.com/MestreLion/git-tools)
## Example
```yaml
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # fetch commit log
- uses: ciffelia/git-restore-mtime-action@v1
- run: ./build.sh
```