.

https://github.com/marketplace/actions/due-dates

How it works:

Add the following snippet to the top of issues you’d like to assign due dates to:

due: 2019-09-19

Create a .github/workflows/workflow.yml file with the following contents: name: Main Workflow on: schedule: - cron: ‘0 * * * *’ jobs: Ubuntu: name: Add labels to issues runs-on: ubuntu-latest steps: - name: GitHub Issue Due Dates Action uses: alexleventer/[email protected] with: GH_TOKEN: “${{ secrets.GH_TOKEN }}” Generate a personal access GitHub token. Add the following environment variable to your repository secrets: GH_TOKEN={{your personal access token}}.