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

GitHub Action

Due Dates

1.0.5

Due Dates

calendar

Due Dates

Manage due dates on issues

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Due Dates

uses: alexleventer/[email protected]

Learn more about this action in alexleventer/github-issue-due-dates-action

Choose a version

GitHub Issue Due Dates Action

How it works:

  1. Add the following to the top of issues you'd like 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/github-issue-due-dates-action@master
        env:
          GH_TOKEN: "${{ secrets.GH_TOKEN }}"
  1. Generate a GitHub token and add it to your repository secrets.