GitHub Action to determine the number of days since the last commit.
Thanks for letting us know! Please file an issue and we should reply shortly.
Below you will find an example of how you can use this action.
name: "Commits"
on:
workflow_dispatch:
jobs:
commits:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout Repository"
uses: "actions/checkout@v3"
- name: "Fetch Days Since Last Commit"
id: "commits"
uses: "custom-workflows/days-since-last-commit@latest"
- name: "Output Days Since Last Commit"
run: echo ${{ steps.commits.outputs.days-since-last-commit }}