An open API service indexing awesome lists of open source software.

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

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
```