Skip to content

Warning

You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?

Due Dates

Actions
Manage due dates on issues
1.0.12
Star (84)

📆 GitHub Issue Due Dates Action

Add due dates to GitHub issues - issues are automatically tagged with Overdue and Due in 1 week labels.

How it works:

  1. Add the following snippet to the top of issues you'd like to assign due dates to:
---
due: 2019-09-19
---
  1. 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 }}"
  1. Generate a personal access GitHub token.
  2. Add the following environment variable to your repository secrets: GH_TOKEN={{your personal access token}}.

Due Dates is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Manage due dates on issues
1.0.12

Due Dates is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.